Searched refs:icon (Results 26 - 50 of 265) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Deggtrayicon.h74 guint egg_tray_icon_send_message (EggTrayIcon *icon,
78 void egg_tray_icon_cancel_message (EggTrayIcon *icon,
81 GtkOrientation egg_tray_icon_get_orientation (EggTrayIcon *icon);
H A Dartgtk.cpp156 GtkIconSize icon; member in struct:__anon586
163 s_sizes[0].icon = GTK_ICON_SIZE_MENU;
164 s_sizes[1].icon = GTK_ICON_SIZE_SMALL_TOOLBAR;
165 s_sizes[2].icon = GTK_ICON_SIZE_LARGE_TOOLBAR;
166 s_sizes[3].icon = GTK_ICON_SIZE_BUTTON;
167 s_sizes[4].icon = GTK_ICON_SIZE_DND;
168 s_sizes[5].icon = GTK_ICON_SIZE_DIALOG;
171 gtk_icon_size_lookup(s_sizes[i].icon,
188 return s_sizes[i].icon;
192 best = s_sizes[i].icon;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/platforms/MacOSX/cocoa-mule/
H A DSourceViewController.h25 - (NSImage *)icon;
68 - (NSImage *)icon;
69 - (void)setIcon:(NSImage *)icon;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/qt/
H A Dtriconpushbutton.cc27 TrIconPushButton :: TrIconPushButton( const QIcon& icon, QWidget * parent ): argument
30 setIcon( icon );
51 QPixmap pixmap = opt.icon.pixmap( opt.iconSize, QIcon::Active, QIcon::On );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Diconbndl.cpp22 #include "wx/icon.h"
87 // if we have one or no icon, we can return now without doing more work:
114 // keep track if there is a system-size icon
119 // return the system-sized icon if we've got one
121 // we certainly have at least one icon thanks to the <=1 check above
126 void wxIconBundle::AddIcon( const wxIcon& icon )
133 if( tmp.Ok() && tmp.GetWidth() == icon.GetWidth() &&
134 tmp.GetHeight() == icon.GetHeight() )
136 tmp = icon;
141 m_icons.Add( icon );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/gtk/icons/
H A DMakefile.in304 gtk_update_icon_cache = gtk-update-icon-cache -f -t
496 update-icon-cache:
498 echo "Updating Gtk icon cache."; \
510 for icon in $(public_icons); do \
511 THEME=`echo $$icon | cut -d_ -f1`; \
512 CONTEXT=`echo $$icon | cut -d_ -f2`; \
513 SIZE=`echo $$icon | cut -d_ -f3`; \
514 ICONFILE=`echo $$icon | cut -d_ -f4`; \
516 $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
518 for icon i
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dbitmap.cpp22 #include "wx/icon.h"
100 OSErr SetupCIconHandlePixMap( CIconHandle icon , short depth , Rect *bounds , CTabHandle colors )
129 (**icon).iconData = NewHandle((unsigned long) bytesPerRow * (bounds->bottom -
131 if ((**icon).iconData != nil)
134 (**icon).iconPMap.baseAddr = 0; /* Point to image */
135 (**icon).iconPMap.rowBytes = bytesPerRow | /* MSB set for PixMap */
137 (**icon).iconPMap.bounds = *bounds; /* Use given bounds */
138 (**icon).iconPMap.pmVersion = 0; /* No special stuff */
139 (**icon).iconPMap.packType = 0; /* Default PICT pack */
140 (**icon)
199 CIconHandle icon = (CIconHandle) NewHandleClear( sizeof ( CIcon ) + 2 * bwSize) ; local
426 CopyFromIcon(const wxIcon& icon) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtaskbar.tex3 This class represents a taskbar icon. A taskbar icon is an icon that appears in the `system tray' and responds to mouse clicks, optionally with a tooltip above it to help provide information.
11 KDE 1 and 2. If it doesn't, the icon will appear as a toplevel window on
17 should be required to explicitly enable the taskbar icon on Unix, it shouldn't
32 To process input from a taskbar icon, use the following event handler macros to direct input to member
72 Destroys the wxTaskBarIcon object, removing the icon if not already removed.
79 (on Windows and Unix platforms, this is when the user right-clicks the icon).
80 Override this function in order to provide popup menu associated with the icon.
117 Removes the icon previousl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/x11/
H A Dtoplevel.h53 virtual void SetIcon(const wxIcon& icon) { SetIcons( wxIconBundle( icon ) ); } argument
83 // set the icon for the window
84 void DoSetIcon( const wxIcon& icon );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstatbmp.h21 #include "wx/icon.h"
25 // a control showing an icon or a bitmap
33 virtual void SetIcon(const wxIcon& icon) = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/unix/
H A Dtaskbarx11.h32 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/cocoa/
H A Dtaskbar.h15 #include "wx/icon.h"
41 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dtaskbarosx.h38 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
H A Dstatbmp.h15 #include "wx/icon.h"
52 void SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; } argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dtaskbar.h15 #include "wx/icon.h"
32 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
H A Dimaglist.h22 * two bitmaps, or an icon.
96 // Adds a bitmap and mask from an icon.
97 int Add(const wxIcon& icon);
111 // Replaces a bitmap and mask from an icon.
112 // You can delete 'icon' after calling Replace.
113 bool Replace(int index, const wxIcon& icon);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dgdiimage.cpp128 wxIcon *icon = wxDynamicCast(image, wxIcon);
129 wxCHECK_MSG( icon, false, _T("wxIconHandler only works with icons") );
131 return LoadIcon(icon, name, flags, desiredWidth, desiredHeight);
135 virtual bool LoadIcon(wxIcon *icon,
143 wxICOFileHandler() : wxIconHandler(_T("ICO icon file"),
150 virtual bool LoadIcon(wxIcon *icon,
168 virtual bool LoadIcon(wxIcon *icon,
389 bool wxICOFileHandler::LoadIcon(wxIcon *icon, argument
394 icon->UnRef();
402 // specify the nth icon i
500 LoadIcon(wxIcon *icon, const wxString& name, long WXUNUSED(flags), int desiredWidth, int desiredHeight) argument
[all...]
H A Dimaglist.cpp30 #include "wx/icon.h"
171 // Adds a bitmap and mask from an icon.
172 int wxImageList::Add(const wxIcon& icon) argument
174 int index = ImageList_AddIcon(GetHImageList(), GetHiconOf(icon));
203 // Replaces a bitmap and mask from an icon.
204 bool wxImageList::Replace(int i, const wxIcon& icon) argument
206 bool ok = ImageList_ReplaceIcon(GetHImageList(), i, GetHiconOf(icon)) != -1;
303 // redraw icon over the mask colour to actually draw it
318 // Get the icon
324 wxIcon icon; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Deggtrayicon.h68 guint egg_tray_icon_send_message (EggTrayIcon *icon,
72 void egg_tray_icon_cancel_message (EggTrayIcon *icon,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/classic/
H A Dimaglist.h24 * two bitmaps, or an icon.
93 // Adds a bitmap and mask from an icon.
94 int Add(const wxIcon& icon);
108 // Replaces a bitmap and mask from an icon.
109 // You can delete 'icon' after calling Replace.
110 bool Replace(int index, const wxIcon& icon);
H A Dstatbmp.h15 #include "wx/icon.h"
52 void SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; } argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Dstatbmp.h16 #include "wx/icon.h"
60 void SetIcon(const wxIcon& icon) argument
62 SetBitmap( icon );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dicon.h2 // Name: wx/msw/icon.h
7 // RCS-ID: $Id: icon.h 42752 2006-10-30 19:26:48Z VZ $
22 // icon data
71 void SetHICON(WXHICON icon) { SetHandle((WXHANDLE)icon); } argument
75 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
H A Dimaglist.h69 // Adds a bitmap and mask from an icon.
70 int Add(const wxIcon& icon);
84 // Replaces a bitmap and mask from an icon.
85 // You can delete 'icon' after calling Replace.
86 bool Replace(int index, const wxIcon& icon);
105 // Get an icon
H A Dstatbmp.h16 #include "wx/icon.h"
21 // a control showing an icon or a bitmap
50 virtual void SetIcon(const wxIcon& icon) { SetImage(&icon); } argument
65 // true if icon/bitmap is valid
77 // we can have either an icon or a bitmap

Completed in 200 milliseconds

1234567891011