Stock icons for toolbars

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
LavaEnvew
In need of some credit
In need of some credit
Posts: 1
Joined: Tue Feb 07, 2012 12:45 am
Location: Indonesia
Contact:

Stock icons for toolbars

Post by LavaEnvew »

Hello friends, I found the following icon packs:
[Moderator : links removed to make sure this message doesn't work in case it's spam]
But they are very expensive for me, I am a student from India. Can
anybody advise where to get these glossy icons cheaper or for free or
similar icons?
Auria
Site Admin
Site Admin
Posts: 6695
Joined: Thu Sep 28, 2006 12:23 am
Contact:

Re: Stock icons for toolbars

Post by Auria »

Hi,

first you posted in the wrong topic, I am moving your post.

For free icons, check http://commons.wikimedia.org/wiki/Tango_icons or http://commons.wikimedia.org/wiki/Categ ... al_Project or search more on Wikimedia commons
"Keyboard not detected. Press F1 to continue"
-- Windows
User avatar
evstevemd
Part Of The Furniture
Part Of The Furniture
Posts: 2409
Joined: Wed Jan 28, 2009 11:57 am
Location: United Republic of Tanzania

Re: Stock icons for toolbars

Post by evstevemd »

I use crystal icons and some internal icons via art provider. It is KDEish but I like them anyway :)
Chief Justice: We have trouble dear citizens!
Citizens: What it is his honor?
Chief Justice:Our president is an atheist, who will he swear to?
RobertHK
I live to help wx-kind
I live to help wx-kind
Posts: 158
Joined: Sat Dec 01, 2012 6:43 am

Re: Stock icons for toolbars

Post by RobertHK »

Hi, I use icons from http://openiconlibrary.sourceforge.net/ and in the standard version. I use the format 'png'. Just in the constructor of the frame to change the handler:
wxImage :: AddHandler (new wxPNGHandler);
// and then the icons (copied to the application directory) loading as follows (example):

wxImage print (wxT ("icons / document-print.png") wxBITMAP_TYPE_PNG);

// Constructor and in the frame of toolbars:
m_auiToolBar1-> AddTool (ID_Print, wxT ("Print"), print, wxT ("Print"));

Enough? :wink:
Post Reply