mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2024-11-15 13:35:44 +08:00
commit
588b0469c5
@ -167,7 +167,7 @@ bool QtAwesome::initFontAwesome( )
|
||||
Q_INIT_RESOURCE(QtAwesome);
|
||||
|
||||
// load the font file
|
||||
QFile res(":/fonts/fontawesome-4.0.3.ttf");
|
||||
QFile res(":/fonts/fontawesome-4.1.0.ttf");
|
||||
if(!res.open(QIODevice::ReadOnly)) {
|
||||
qDebug() << "Font awesome font could not be loaded!";
|
||||
return false;
|
||||
@ -190,375 +190,509 @@ bool QtAwesome::initFontAwesome( )
|
||||
|
||||
// intialize the map
|
||||
QHash<QString, fa>& m = namedCodepoints_;
|
||||
m.insert("glass", fa::glass);
|
||||
m.insert("music", fa::music);
|
||||
m.insert("search", fa::search);
|
||||
m.insert("envelopeo", fa::envelopeo);
|
||||
m.insert("heart", fa::heart);
|
||||
m.insert("star", fa::star);
|
||||
m.insert("staro", fa::staro);
|
||||
m.insert("user", fa::user);
|
||||
m.insert("film", fa::film);
|
||||
m.insert("thlarge", fa::thlarge);
|
||||
m.insert("th", fa::th);
|
||||
m.insert("thlist", fa::thlist);
|
||||
m.insert("check", fa::check);
|
||||
m.insert("times", fa::times);
|
||||
m.insert("searchplus", fa::searchplus);
|
||||
m.insert("searchminus", fa::searchminus);
|
||||
m.insert("poweroff", fa::poweroff);
|
||||
m.insert("signal", fa::signal);
|
||||
m.insert("cog", fa::cog);
|
||||
m.insert("trasho", fa::trasho);
|
||||
m.insert("home", fa::home);
|
||||
m.insert("fileo", fa::fileo);
|
||||
m.insert("clocko", fa::clocko);
|
||||
m.insert("road", fa::road);
|
||||
m.insert("download", fa::download);
|
||||
m.insert("arrowcircleodown", fa::arrowcircleodown);
|
||||
m.insert("arrowcircleoup", fa::arrowcircleoup);
|
||||
m.insert("inbox", fa::inbox);
|
||||
m.insert("playcircleo", fa::playcircleo);
|
||||
m.insert("repeat", fa::repeat);
|
||||
m.insert("refresh", fa::refresh);
|
||||
m.insert("listalt", fa::listalt);
|
||||
m.insert("lock", fa::lock);
|
||||
m.insert("flag", fa::flag);
|
||||
m.insert("headphones", fa::headphones);
|
||||
m.insert("volumeoff", fa::volumeoff);
|
||||
m.insert("volumedown", fa::volumedown);
|
||||
m.insert("volumeup", fa::volumeup);
|
||||
m.insert("qrcode", fa::qrcode);
|
||||
m.insert("barcode", fa::barcode);
|
||||
m.insert("tag", fa::tag);
|
||||
m.insert("tags", fa::tags);
|
||||
m.insert("book", fa::book);
|
||||
m.insert("bookmark", fa::bookmark);
|
||||
m.insert("print", fa::print);
|
||||
m.insert("camera", fa::camera);
|
||||
m.insert("font", fa::font);
|
||||
m.insert("bold", fa::bold);
|
||||
m.insert("italic", fa::italic);
|
||||
m.insert("textheight", fa::textheight);
|
||||
m.insert("textwidth", fa::textwidth);
|
||||
m.insert("alignleft", fa::alignleft);
|
||||
m.insert("aligncenter", fa::aligncenter);
|
||||
m.insert("alignright", fa::alignright);
|
||||
m.insert("alignjustify", fa::alignjustify);
|
||||
m.insert("list", fa::list);
|
||||
m.insert("outdent", fa::outdent);
|
||||
m.insert("indent", fa::indent);
|
||||
m.insert("videocamera", fa::videocamera);
|
||||
m.insert("pictureo", fa::pictureo);
|
||||
m.insert("pencil", fa::pencil);
|
||||
m.insert("mapmarker", fa::mapmarker);
|
||||
m.insert("adjust", fa::adjust);
|
||||
m.insert("tint", fa::tint);
|
||||
m.insert("pencilsquareo", fa::pencilsquareo);
|
||||
m.insert("sharesquareo", fa::sharesquareo);
|
||||
m.insert("checksquareo", fa::checksquareo);
|
||||
m.insert("arrows", fa::arrows);
|
||||
m.insert("stepbackward", fa::stepbackward);
|
||||
m.insert("fastbackward", fa::fastbackward);
|
||||
m.insert("backward", fa::backward);
|
||||
m.insert("play", fa::play);
|
||||
m.insert("pause", fa::pause);
|
||||
m.insert("stop", fa::stop);
|
||||
m.insert("forward", fa::forward);
|
||||
m.insert("fastforward", fa::fastforward);
|
||||
m.insert("stepforward", fa::stepforward);
|
||||
m.insert("eject", fa::eject);
|
||||
m.insert("chevronleft", fa::chevronleft);
|
||||
m.insert("chevronright", fa::chevronright);
|
||||
m.insert("pluscircle", fa::pluscircle);
|
||||
m.insert("minuscircle", fa::minuscircle);
|
||||
m.insert("timescircle", fa::timescircle);
|
||||
m.insert("checkcircle", fa::checkcircle);
|
||||
m.insert("questioncircle", fa::questioncircle);
|
||||
m.insert("infocircle", fa::infocircle);
|
||||
m.insert("crosshairs", fa::crosshairs);
|
||||
m.insert("timescircleo", fa::timescircleo);
|
||||
m.insert("checkcircleo", fa::checkcircleo);
|
||||
m.insert("ban", fa::ban);
|
||||
m.insert("arrowleft", fa::arrowleft);
|
||||
m.insert("arrowright", fa::arrowright);
|
||||
m.insert("arrowup", fa::arrowup);
|
||||
m.insert("arrowdown", fa::arrowdown);
|
||||
m.insert("share", fa::share);
|
||||
m.insert("expand", fa::expand);
|
||||
m.insert("compress", fa::compress);
|
||||
m.insert("plus", fa::plus);
|
||||
m.insert("minus", fa::minus);
|
||||
m.insert("asterisk", fa::asterisk);
|
||||
m.insert("exclamationcircle", fa::exclamationcircle);
|
||||
m.insert("gift", fa::gift);
|
||||
m.insert("leaf", fa::leaf);
|
||||
m.insert("fire", fa::fire);
|
||||
m.insert("eye", fa::eye);
|
||||
m.insert("eyeslash", fa::eyeslash);
|
||||
m.insert("exclamationtriangle", fa::exclamationtriangle);
|
||||
m.insert("plane", fa::plane);
|
||||
m.insert("calendar", fa::calendar);
|
||||
m.insert("random", fa::random);
|
||||
m.insert("comment", fa::comment);
|
||||
m.insert("magnet", fa::magnet);
|
||||
m.insert("chevronup", fa::chevronup);
|
||||
m.insert("chevrondown", fa::chevrondown);
|
||||
m.insert("retweet", fa::retweet);
|
||||
m.insert("shoppingcart", fa::shoppingcart);
|
||||
m.insert("folder", fa::folder);
|
||||
m.insert("folderopen", fa::folderopen);
|
||||
m.insert("arrowsv", fa::arrowsv);
|
||||
m.insert("arrowsh", fa::arrowsh);
|
||||
m.insert("barcharto", fa::barcharto);
|
||||
m.insert("twittersquare", fa::twittersquare);
|
||||
m.insert("facebooksquare", fa::facebooksquare);
|
||||
m.insert("cameraretro", fa::cameraretro);
|
||||
m.insert("key", fa::key);
|
||||
m.insert("cogs", fa::cogs);
|
||||
m.insert("comments", fa::comments);
|
||||
m.insert("thumbsoup", fa::thumbsoup);
|
||||
m.insert("thumbsodown", fa::thumbsodown);
|
||||
m.insert("starhalf", fa::starhalf);
|
||||
m.insert("hearto", fa::hearto);
|
||||
m.insert("signout", fa::signout);
|
||||
m.insert("linkedinsquare", fa::linkedinsquare);
|
||||
m.insert("thumbtack", fa::thumbtack);
|
||||
m.insert("externallink", fa::externallink);
|
||||
m.insert("signin", fa::signin);
|
||||
m.insert("trophy", fa::trophy);
|
||||
m.insert("githubsquare", fa::githubsquare);
|
||||
m.insert("upload", fa::upload);
|
||||
m.insert("lemono", fa::lemono);
|
||||
m.insert("phone", fa::phone);
|
||||
m.insert("squareo", fa::squareo);
|
||||
m.insert("bookmarko", fa::bookmarko);
|
||||
m.insert("phonesquare", fa::phonesquare);
|
||||
m.insert("twitter", fa::twitter);
|
||||
m.insert("facebook", fa::facebook);
|
||||
m.insert("github", fa::github);
|
||||
m.insert("unlock", fa::unlock);
|
||||
m.insert("creditcard", fa::creditcard);
|
||||
m.insert("rss", fa::rss);
|
||||
m.insert("hddo", fa::hddo);
|
||||
m.insert("bullhorn", fa::bullhorn);
|
||||
m.insert("bell", fa::bell);
|
||||
m.insert("certificate", fa::certificate);
|
||||
m.insert("handoright", fa::handoright);
|
||||
m.insert("handoleft", fa::handoleft);
|
||||
m.insert("handoup", fa::handoup);
|
||||
m.insert("handodown", fa::handodown);
|
||||
m.insert("arrowcircleleft", fa::arrowcircleleft);
|
||||
m.insert("arrowcircleright", fa::arrowcircleright);
|
||||
m.insert("arrowcircleup", fa::arrowcircleup);
|
||||
m.insert("arrowcircledown", fa::arrowcircledown);
|
||||
m.insert("globe", fa::globe);
|
||||
m.insert("wrench", fa::wrench);
|
||||
m.insert("tasks", fa::tasks);
|
||||
m.insert("filter", fa::filter);
|
||||
m.insert("briefcase", fa::briefcase);
|
||||
m.insert("arrowsalt", fa::arrowsalt);
|
||||
m.insert("users", fa::users);
|
||||
m.insert("link", fa::link);
|
||||
m.insert("cloud", fa::cloud);
|
||||
m.insert("flask", fa::flask);
|
||||
m.insert("scissors", fa::scissors);
|
||||
m.insert("fileso", fa::fileso);
|
||||
m.insert("paperclip", fa::paperclip);
|
||||
m.insert("floppyo", fa::floppyo);
|
||||
m.insert("square", fa::square);
|
||||
m.insert("bars", fa::bars);
|
||||
m.insert("listul", fa::listul);
|
||||
m.insert("listol", fa::listol);
|
||||
m.insert("strikethrough", fa::strikethrough);
|
||||
m.insert("underline", fa::underline);
|
||||
m.insert("table", fa::table);
|
||||
m.insert("magic", fa::magic);
|
||||
m.insert("truck", fa::truck);
|
||||
m.insert("pinterest", fa::pinterest);
|
||||
m.insert("pinterestsquare", fa::pinterestsquare);
|
||||
m.insert("googleplussquare", fa::googleplussquare);
|
||||
m.insert("googleplus", fa::googleplus);
|
||||
m.insert("money", fa::money);
|
||||
m.insert("caretdown", fa::caretdown);
|
||||
m.insert("caretup", fa::caretup);
|
||||
m.insert("caretleft", fa::caretleft);
|
||||
m.insert("caretright", fa::caretright);
|
||||
m.insert("columns", fa::columns);
|
||||
m.insert("sort", fa::sort);
|
||||
m.insert("sortasc", fa::sortasc);
|
||||
m.insert("sortdesc", fa::sortdesc);
|
||||
m.insert("envelope", fa::envelope);
|
||||
m.insert("linkedin", fa::linkedin);
|
||||
m.insert("undo", fa::undo);
|
||||
m.insert("gavel", fa::gavel);
|
||||
m.insert("tachometer", fa::tachometer);
|
||||
m.insert("commento", fa::commento);
|
||||
m.insert("commentso", fa::commentso);
|
||||
m.insert("bolt", fa::bolt);
|
||||
m.insert("sitemap", fa::sitemap);
|
||||
m.insert("umbrella", fa::umbrella);
|
||||
m.insert("clipboard", fa::clipboard);
|
||||
m.insert("lightbulbo", fa::lightbulbo);
|
||||
m.insert("exchange", fa::exchange);
|
||||
m.insert("clouddownload", fa::clouddownload);
|
||||
m.insert("cloudupload", fa::cloudupload);
|
||||
m.insert("usermd", fa::usermd);
|
||||
m.insert("stethoscope", fa::stethoscope);
|
||||
m.insert("suitcase", fa::suitcase);
|
||||
m.insert("bello", fa::bello);
|
||||
m.insert("coffee", fa::coffee);
|
||||
m.insert("cutlery", fa::cutlery);
|
||||
m.insert("filetexto", fa::filetexto);
|
||||
m.insert("buildingo", fa::buildingo);
|
||||
m.insert("hospitalo", fa::hospitalo);
|
||||
m.insert("ambulance", fa::ambulance);
|
||||
m.insert("medkit", fa::medkit);
|
||||
m.insert("fighterjet", fa::fighterjet);
|
||||
m.insert("beer", fa::beer);
|
||||
m.insert("hsquare", fa::hsquare);
|
||||
m.insert("plussquare", fa::plussquare);
|
||||
m.insert("angledoubleleft", fa::angledoubleleft);
|
||||
m.insert("angledoubleright", fa::angledoubleright);
|
||||
m.insert("angledoubleup", fa::angledoubleup);
|
||||
m.insert("angledoubledown", fa::angledoubledown);
|
||||
m.insert("angleleft", fa::angleleft);
|
||||
m.insert("angleright", fa::angleright);
|
||||
m.insert("angleup", fa::angleup);
|
||||
m.insert("angledown", fa::angledown);
|
||||
m.insert("desktop", fa::desktop);
|
||||
m.insert("laptop", fa::laptop);
|
||||
m.insert("tablet", fa::tablet);
|
||||
m.insert("mobile", fa::mobile);
|
||||
m.insert("circleo", fa::circleo);
|
||||
m.insert("quoteleft", fa::quoteleft);
|
||||
m.insert("quoteright", fa::quoteright);
|
||||
m.insert("spinner", fa::spinner);
|
||||
m.insert("circle", fa::circle);
|
||||
m.insert("reply", fa::reply);
|
||||
m.insert("githubalt", fa::githubalt);
|
||||
m.insert("foldero", fa::foldero);
|
||||
m.insert("folderopeno", fa::folderopeno);
|
||||
m.insert("smileo", fa::smileo);
|
||||
m.insert("frowno", fa::frowno);
|
||||
m.insert("meho", fa::meho);
|
||||
m.insert("gamepad", fa::gamepad);
|
||||
m.insert("keyboardo", fa::keyboardo);
|
||||
m.insert("flago", fa::flago);
|
||||
m.insert("flagcheckered", fa::flagcheckered);
|
||||
m.insert("terminal", fa::terminal);
|
||||
m.insert("code", fa::code);
|
||||
m.insert("replyall", fa::replyall);
|
||||
m.insert("mailreplyall", fa::mailreplyall);
|
||||
m.insert("starhalfo", fa::starhalfo);
|
||||
m.insert("locationarrow", fa::locationarrow);
|
||||
m.insert("crop", fa::crop);
|
||||
m.insert("codefork", fa::codefork);
|
||||
m.insert("chainbroken", fa::chainbroken);
|
||||
m.insert("question", fa::question);
|
||||
m.insert("info", fa::info);
|
||||
m.insert("exclamation", fa::exclamation);
|
||||
m.insert("superscript", fa::superscript);
|
||||
m.insert("subscript", fa::subscript);
|
||||
m.insert("eraser", fa::eraser);
|
||||
m.insert("puzzlepiece", fa::puzzlepiece);
|
||||
m.insert("microphone", fa::microphone);
|
||||
m.insert("microphoneslash", fa::microphoneslash);
|
||||
m.insert("shield", fa::shield);
|
||||
m.insert("calendaro", fa::calendaro);
|
||||
m.insert("fireextinguisher", fa::fireextinguisher);
|
||||
m.insert("rocket", fa::rocket);
|
||||
m.insert("maxcdn", fa::maxcdn);
|
||||
m.insert("chevroncircleleft", fa::chevroncircleleft);
|
||||
m.insert("chevroncircleright", fa::chevroncircleright);
|
||||
m.insert("chevroncircleup", fa::chevroncircleup);
|
||||
m.insert("chevroncircledown", fa::chevroncircledown);
|
||||
m.insert("html5", fa::html5);
|
||||
m.insert("css3", fa::css3);
|
||||
m.insert("anchor", fa::anchor);
|
||||
m.insert("unlockalt", fa::unlockalt);
|
||||
m.insert("bullseye", fa::bullseye);
|
||||
m.insert("ellipsish", fa::ellipsish);
|
||||
m.insert("ellipsisv", fa::ellipsisv);
|
||||
m.insert("rsssquare", fa::rsssquare);
|
||||
m.insert("playcircle", fa::playcircle);
|
||||
m.insert("ticket", fa::ticket);
|
||||
m.insert("minussquare", fa::minussquare);
|
||||
m.insert("minussquareo", fa::minussquareo);
|
||||
m.insert("levelup", fa::levelup);
|
||||
m.insert("leveldown", fa::leveldown);
|
||||
m.insert("checksquare", fa::checksquare);
|
||||
m.insert("pencilsquare", fa::pencilsquare);
|
||||
m.insert("externallinksquare", fa::externallinksquare);
|
||||
m.insert("sharesquare", fa::sharesquare);
|
||||
m.insert("compass", fa::compass);
|
||||
m.insert("caretsquareodown", fa::caretsquareodown);
|
||||
m.insert("caretsquareoup", fa::caretsquareoup);
|
||||
m.insert("caretsquareoright", fa::caretsquareoright);
|
||||
m.insert("eur", fa::eur);
|
||||
m.insert("gbp", fa::gbp);
|
||||
m.insert("usd", fa::usd);
|
||||
m.insert("inr", fa::inr);
|
||||
m.insert("jpy", fa::jpy);
|
||||
m.insert("rub", fa::rub);
|
||||
m.insert("krw", fa::krw);
|
||||
m.insert("btc", fa::btc);
|
||||
m.insert("file", fa::file);
|
||||
m.insert("filetext", fa::filetext);
|
||||
m.insert("sortalphaasc", fa::sortalphaasc);
|
||||
m.insert("sortalphadesc", fa::sortalphadesc);
|
||||
m.insert("sortamountasc", fa::sortamountasc);
|
||||
m.insert("sortamountdesc", fa::sortamountdesc);
|
||||
m.insert("sortnumericasc", fa::sortnumericasc);
|
||||
m.insert("sortnumericdesc", fa::sortnumericdesc);
|
||||
m.insert("thumbsup", fa::thumbsup);
|
||||
m.insert("thumbsdown", fa::thumbsdown);
|
||||
m.insert("youtubesquare", fa::youtubesquare);
|
||||
m.insert("youtube", fa::youtube);
|
||||
m.insert("xing", fa::xing);
|
||||
m.insert("xingsquare", fa::xingsquare);
|
||||
m.insert("youtubeplay", fa::youtubeplay);
|
||||
m.insert("dropbox", fa::dropbox);
|
||||
m.insert("stackoverflow", fa::stackoverflow);
|
||||
m.insert("instagram", fa::instagram);
|
||||
m.insert("flickr", fa::flickr);
|
||||
m.insert("adn", fa::adn);
|
||||
m.insert("bitbucket", fa::bitbucket);
|
||||
m.insert("bitbucketsquare", fa::bitbucketsquare);
|
||||
m.insert("tumblr", fa::tumblr);
|
||||
m.insert("tumblrsquare", fa::tumblrsquare);
|
||||
m.insert("longarrowdown", fa::longarrowdown);
|
||||
m.insert("longarrowup", fa::longarrowup);
|
||||
m.insert("longarrowleft", fa::longarrowleft);
|
||||
m.insert("longarrowright", fa::longarrowright);
|
||||
m.insert("appleicon", fa::appleicon);
|
||||
m.insert("windowsicon", fa::windowsicon);
|
||||
m.insert("androidicon", fa::androidicon);
|
||||
m.insert("linuxicon", fa::linuxicon);
|
||||
m.insert("dribbble", fa::dribbble);
|
||||
m.insert("skype", fa::skype);
|
||||
m.insert("foursquare", fa::foursquare);
|
||||
m.insert("trello", fa::trello);
|
||||
m.insert("female", fa::female);
|
||||
m.insert("male", fa::male);
|
||||
m.insert("gittip", fa::gittip);
|
||||
m.insert("suno", fa::suno);
|
||||
m.insert("moono", fa::moono);
|
||||
m.insert("archive", fa::archive);
|
||||
m.insert("bug", fa::bug);
|
||||
m.insert("vk", fa::vk);
|
||||
m.insert("weibo", fa::weibo);
|
||||
m.insert("renren", fa::renren);
|
||||
m.insert("pagelines", fa::pagelines);
|
||||
m.insert("stackexchange", fa::stackexchange);
|
||||
m.insert("arrowcircleoright", fa::arrowcircleoright);
|
||||
m.insert("arrowcircleoleft", fa::arrowcircleoleft);
|
||||
m.insert("caretsquareoleft", fa::caretsquareoleft);
|
||||
m.insert("dotcircleo", fa::dotcircleo);
|
||||
m.insert("wheelchair", fa::wheelchair);
|
||||
m.insert("vimeosquare", fa::vimeosquare);
|
||||
m.insert("tryicon", fa::tryicon);
|
||||
m.insert("plussquareo", fa::plussquareo);
|
||||
m.insert("adjust", fa::adjust);
|
||||
m.insert("adn", fa::adn);
|
||||
m.insert("aligncenter", fa::aligncenter);
|
||||
m.insert("alignjustify", fa::alignjustify);
|
||||
m.insert("alignleft", fa::alignleft);
|
||||
m.insert("alignright", fa::alignright);
|
||||
m.insert("ambulance", fa::ambulance);
|
||||
m.insert("anchor", fa::anchor);
|
||||
m.insert("androidicon", fa::androidicon);
|
||||
m.insert("angledoubledown", fa::angledoubledown);
|
||||
m.insert("angledoubleleft", fa::angledoubleleft);
|
||||
m.insert("angledoubleright", fa::angledoubleright);
|
||||
m.insert("angledoubleup", fa::angledoubleup);
|
||||
m.insert("angledown", fa::angledown);
|
||||
m.insert("angleleft", fa::angleleft);
|
||||
m.insert("angleright", fa::angleright);
|
||||
m.insert("angleup", fa::angleup);
|
||||
m.insert("apple", fa::apple);
|
||||
m.insert("archive", fa::archive);
|
||||
m.insert("arrowcircledown", fa::arrowcircledown);
|
||||
m.insert("arrowcircleleft", fa::arrowcircleleft);
|
||||
m.insert("arrowcircleodown", fa::arrowcircleodown);
|
||||
m.insert("arrowcircleoleft", fa::arrowcircleoleft);
|
||||
m.insert("arrowcircleoright", fa::arrowcircleoright);
|
||||
m.insert("arrowcircleoup", fa::arrowcircleoup);
|
||||
m.insert("arrowcircleright", fa::arrowcircleright);
|
||||
m.insert("arrowcircleup", fa::arrowcircleup);
|
||||
m.insert("arrowdown", fa::arrowdown);
|
||||
m.insert("arrowleft", fa::arrowleft);
|
||||
m.insert("arrowright", fa::arrowright);
|
||||
m.insert("arrowup", fa::arrowup);
|
||||
m.insert("arrows", fa::arrows);
|
||||
m.insert("arrowsalt", fa::arrowsalt);
|
||||
m.insert("arrowsh", fa::arrowsh);
|
||||
m.insert("arrowsv", fa::arrowsv);
|
||||
m.insert("asterisk", fa::asterisk);
|
||||
m.insert("automobile", fa::automobile);
|
||||
m.insert("backward", fa::backward);
|
||||
m.insert("ban", fa::ban);
|
||||
m.insert("bank", fa::bank);
|
||||
m.insert("barcharto", fa::barcharto);
|
||||
m.insert("barcode", fa::barcode);
|
||||
m.insert("bars", fa::bars);
|
||||
m.insert("beer", fa::beer);
|
||||
m.insert("behance", fa::behance);
|
||||
m.insert("behancesquare", fa::behancesquare);
|
||||
m.insert("bell", fa::bell);
|
||||
m.insert("bello", fa::bello);
|
||||
m.insert("bitbucket", fa::bitbucket);
|
||||
m.insert("bitbucketsquare", fa::bitbucketsquare);
|
||||
m.insert("bitcoin", fa::bitcoin);
|
||||
m.insert("bold", fa::bold);
|
||||
m.insert("bolt", fa::bolt);
|
||||
m.insert("bomb", fa::bomb);
|
||||
m.insert("book", fa::book);
|
||||
m.insert("bookmark", fa::bookmark);
|
||||
m.insert("bookmarko", fa::bookmarko);
|
||||
m.insert("briefcase", fa::briefcase);
|
||||
m.insert("btc", fa::btc);
|
||||
m.insert("bug", fa::bug);
|
||||
m.insert("building", fa::building);
|
||||
m.insert("buildingo", fa::buildingo);
|
||||
m.insert("bullhorn", fa::bullhorn);
|
||||
m.insert("bullseye", fa::bullseye);
|
||||
m.insert("cab", fa::cab);
|
||||
m.insert("calendar", fa::calendar);
|
||||
m.insert("calendaro", fa::calendaro);
|
||||
m.insert("camera", fa::camera);
|
||||
m.insert("cameraretro", fa::cameraretro);
|
||||
m.insert("car", fa::car);
|
||||
m.insert("caretdown", fa::caretdown);
|
||||
m.insert("caretleft", fa::caretleft);
|
||||
m.insert("caretright", fa::caretright);
|
||||
m.insert("caretsquareodown", fa::caretsquareodown);
|
||||
m.insert("caretsquareoleft", fa::caretsquareoleft);
|
||||
m.insert("caretsquareoright", fa::caretsquareoright);
|
||||
m.insert("caretsquareoup", fa::caretsquareoup);
|
||||
m.insert("caretup", fa::caretup);
|
||||
m.insert("certificate", fa::certificate);
|
||||
m.insert("chain", fa::chain);
|
||||
m.insert("chainbroken", fa::chainbroken);
|
||||
m.insert("check", fa::check);
|
||||
m.insert("checkcircle", fa::checkcircle);
|
||||
m.insert("checkcircleo", fa::checkcircleo);
|
||||
m.insert("checksquare", fa::checksquare);
|
||||
m.insert("checksquareo", fa::checksquareo);
|
||||
m.insert("chevroncircledown", fa::chevroncircledown);
|
||||
m.insert("chevroncircleleft", fa::chevroncircleleft);
|
||||
m.insert("chevroncircleright", fa::chevroncircleright);
|
||||
m.insert("chevroncircleup", fa::chevroncircleup);
|
||||
m.insert("chevrondown", fa::chevrondown);
|
||||
m.insert("chevronleft", fa::chevronleft);
|
||||
m.insert("chevronright", fa::chevronright);
|
||||
m.insert("chevronup", fa::chevronup);
|
||||
m.insert("child", fa::child);
|
||||
m.insert("circle", fa::circle);
|
||||
m.insert("circleo", fa::circleo);
|
||||
m.insert("circleonotch", fa::circleonotch);
|
||||
m.insert("circlethin", fa::circlethin);
|
||||
m.insert("clipboard", fa::clipboard);
|
||||
m.insert("clocko", fa::clocko);
|
||||
m.insert("cloud", fa::cloud);
|
||||
m.insert("clouddownload", fa::clouddownload);
|
||||
m.insert("cloudupload", fa::cloudupload);
|
||||
m.insert("cny", fa::cny);
|
||||
m.insert("code", fa::code);
|
||||
m.insert("codefork", fa::codefork);
|
||||
m.insert("codepen", fa::codepen);
|
||||
m.insert("coffee", fa::coffee);
|
||||
m.insert("cog", fa::cog);
|
||||
m.insert("cogs", fa::cogs);
|
||||
m.insert("columns", fa::columns);
|
||||
m.insert("comment", fa::comment);
|
||||
m.insert("commento", fa::commento);
|
||||
m.insert("comments", fa::comments);
|
||||
m.insert("commentso", fa::commentso);
|
||||
m.insert("compass", fa::compass);
|
||||
m.insert("compress", fa::compress);
|
||||
m.insert("copy", fa::copy);
|
||||
m.insert("creditcard", fa::creditcard);
|
||||
m.insert("crop", fa::crop);
|
||||
m.insert("crosshairs", fa::crosshairs);
|
||||
m.insert("css3", fa::css3);
|
||||
m.insert("cube", fa::cube);
|
||||
m.insert("cubes", fa::cubes);
|
||||
m.insert("cut", fa::cut);
|
||||
m.insert("cutlery", fa::cutlery);
|
||||
m.insert("dashboard", fa::dashboard);
|
||||
m.insert("database", fa::database);
|
||||
m.insert("dedent", fa::dedent);
|
||||
m.insert("delicious", fa::delicious);
|
||||
m.insert("desktop", fa::desktop);
|
||||
m.insert("deviantart", fa::deviantart);
|
||||
m.insert("digg", fa::digg);
|
||||
m.insert("dollar", fa::dollar);
|
||||
m.insert("dotcircleo", fa::dotcircleo);
|
||||
m.insert("download", fa::download);
|
||||
m.insert("dribbble", fa::dribbble);
|
||||
m.insert("dropbox", fa::dropbox);
|
||||
m.insert("drupal", fa::drupal);
|
||||
m.insert("edit", fa::edit);
|
||||
m.insert("eject", fa::eject);
|
||||
m.insert("ellipsish", fa::ellipsish);
|
||||
m.insert("ellipsisv", fa::ellipsisv);
|
||||
m.insert("empire", fa::empire);
|
||||
m.insert("envelope", fa::envelope);
|
||||
m.insert("envelopeo", fa::envelopeo);
|
||||
m.insert("envelopesquare", fa::envelopesquare);
|
||||
m.insert("eraser", fa::eraser);
|
||||
m.insert("eur", fa::eur);
|
||||
m.insert("euro", fa::euro);
|
||||
m.insert("exchange", fa::exchange);
|
||||
m.insert("exclamation", fa::exclamation);
|
||||
m.insert("exclamationcircle", fa::exclamationcircle);
|
||||
m.insert("exclamationtriangle", fa::exclamationtriangle);
|
||||
m.insert("expand", fa::expand);
|
||||
m.insert("externallink", fa::externallink);
|
||||
m.insert("externallinksquare", fa::externallinksquare);
|
||||
m.insert("eye", fa::eye);
|
||||
m.insert("eyeslash", fa::eyeslash);
|
||||
m.insert("facebook", fa::facebook);
|
||||
m.insert("facebooksquare", fa::facebooksquare);
|
||||
m.insert("fastbackward", fa::fastbackward);
|
||||
m.insert("fastforward", fa::fastforward);
|
||||
m.insert("fax", fa::fax);
|
||||
m.insert("female", fa::female);
|
||||
m.insert("fighterjet", fa::fighterjet);
|
||||
m.insert("file", fa::file);
|
||||
m.insert("filearchiveo", fa::filearchiveo);
|
||||
m.insert("fileaudioo", fa::fileaudioo);
|
||||
m.insert("filecodeo", fa::filecodeo);
|
||||
m.insert("fileexcelo", fa::fileexcelo);
|
||||
m.insert("fileimageo", fa::fileimageo);
|
||||
m.insert("filemovieo", fa::filemovieo);
|
||||
m.insert("fileo", fa::fileo);
|
||||
m.insert("filepdfo", fa::filepdfo);
|
||||
m.insert("filephotoo", fa::filephotoo);
|
||||
m.insert("filepictureo", fa::filepictureo);
|
||||
m.insert("filepowerpointo", fa::filepowerpointo);
|
||||
m.insert("filesoundo", fa::filesoundo);
|
||||
m.insert("filetext", fa::filetext);
|
||||
m.insert("filetexto", fa::filetexto);
|
||||
m.insert("filevideoo", fa::filevideoo);
|
||||
m.insert("filewordo", fa::filewordo);
|
||||
m.insert("filezipo", fa::filezipo);
|
||||
m.insert("fileso", fa::fileso);
|
||||
m.insert("film", fa::film);
|
||||
m.insert("filter", fa::filter);
|
||||
m.insert("fire", fa::fire);
|
||||
m.insert("fireextinguisher", fa::fireextinguisher);
|
||||
m.insert("flag", fa::flag);
|
||||
m.insert("flagcheckered", fa::flagcheckered);
|
||||
m.insert("flago", fa::flago);
|
||||
m.insert("flash", fa::flash);
|
||||
m.insert("flask", fa::flask);
|
||||
m.insert("flickr", fa::flickr);
|
||||
m.insert("floppyo", fa::floppyo);
|
||||
m.insert("folder", fa::folder);
|
||||
m.insert("foldero", fa::foldero);
|
||||
m.insert("folderopen", fa::folderopen);
|
||||
m.insert("folderopeno", fa::folderopeno);
|
||||
m.insert("font", fa::font);
|
||||
m.insert("forward", fa::forward);
|
||||
m.insert("foursquare", fa::foursquare);
|
||||
m.insert("frowno", fa::frowno);
|
||||
m.insert("gamepad", fa::gamepad);
|
||||
m.insert("gavel", fa::gavel);
|
||||
m.insert("gbp", fa::gbp);
|
||||
m.insert("ge", fa::ge);
|
||||
m.insert("gear", fa::gear);
|
||||
m.insert("gears", fa::gears);
|
||||
m.insert("gift", fa::gift);
|
||||
m.insert("git", fa::git);
|
||||
m.insert("gitsquare", fa::gitsquare);
|
||||
m.insert("github", fa::github);
|
||||
m.insert("githubalt", fa::githubalt);
|
||||
m.insert("githubsquare", fa::githubsquare);
|
||||
m.insert("gittip", fa::gittip);
|
||||
m.insert("glass", fa::glass);
|
||||
m.insert("globe", fa::globe);
|
||||
m.insert("google", fa::google);
|
||||
m.insert("googleplus", fa::googleplus);
|
||||
m.insert("googleplussquare", fa::googleplussquare);
|
||||
m.insert("graduationcap", fa::graduationcap);
|
||||
m.insert("group", fa::group);
|
||||
m.insert("hsquare", fa::hsquare);
|
||||
m.insert("hackernews", fa::hackernews);
|
||||
m.insert("handodown", fa::handodown);
|
||||
m.insert("handoleft", fa::handoleft);
|
||||
m.insert("handoright", fa::handoright);
|
||||
m.insert("handoup", fa::handoup);
|
||||
m.insert("hddo", fa::hddo);
|
||||
m.insert("header", fa::header);
|
||||
m.insert("headphones", fa::headphones);
|
||||
m.insert("heart", fa::heart);
|
||||
m.insert("hearto", fa::hearto);
|
||||
m.insert("history", fa::history);
|
||||
m.insert("home", fa::home);
|
||||
m.insert("hospitalo", fa::hospitalo);
|
||||
m.insert("html5", fa::html5);
|
||||
m.insert("image", fa::image);
|
||||
m.insert("inbox", fa::inbox);
|
||||
m.insert("indent", fa::indent);
|
||||
m.insert("info", fa::info);
|
||||
m.insert("infocircle", fa::infocircle);
|
||||
m.insert("inr", fa::inr);
|
||||
m.insert("instagram", fa::instagram);
|
||||
m.insert("institution", fa::institution);
|
||||
m.insert("italic", fa::italic);
|
||||
m.insert("joomla", fa::joomla);
|
||||
m.insert("jpy", fa::jpy);
|
||||
m.insert("jsfiddle", fa::jsfiddle);
|
||||
m.insert("key", fa::key);
|
||||
m.insert("keyboardo", fa::keyboardo);
|
||||
m.insert("krw", fa::krw);
|
||||
m.insert("language", fa::language);
|
||||
m.insert("laptop", fa::laptop);
|
||||
m.insert("leaf", fa::leaf);
|
||||
m.insert("legal", fa::legal);
|
||||
m.insert("lemono", fa::lemono);
|
||||
m.insert("leveldown", fa::leveldown);
|
||||
m.insert("levelup", fa::levelup);
|
||||
m.insert("lifebouy", fa::lifebouy);
|
||||
m.insert("lifering", fa::lifering);
|
||||
m.insert("lifesaver", fa::lifesaver);
|
||||
m.insert("lightbulbo", fa::lightbulbo);
|
||||
m.insert("link", fa::link);
|
||||
m.insert("linkedin", fa::linkedin);
|
||||
m.insert("linkedinsquare", fa::linkedinsquare);
|
||||
m.insert("linuxicon", fa::linuxicon);
|
||||
m.insert("list", fa::list);
|
||||
m.insert("listalt", fa::listalt);
|
||||
m.insert("listol", fa::listol);
|
||||
m.insert("listul", fa::listul);
|
||||
m.insert("locationarrow", fa::locationarrow);
|
||||
m.insert("lock", fa::lock);
|
||||
m.insert("longarrowdown", fa::longarrowdown);
|
||||
m.insert("longarrowleft", fa::longarrowleft);
|
||||
m.insert("longarrowright", fa::longarrowright);
|
||||
m.insert("longarrowup", fa::longarrowup);
|
||||
m.insert("magic", fa::magic);
|
||||
m.insert("magnet", fa::magnet);
|
||||
m.insert("mailforward", fa::mailforward);
|
||||
m.insert("mailreply", fa::mailreply);
|
||||
m.insert("mailreplyall", fa::mailreplyall);
|
||||
m.insert("male", fa::male);
|
||||
m.insert("mapmarker", fa::mapmarker);
|
||||
m.insert("maxcdn", fa::maxcdn);
|
||||
m.insert("medkit", fa::medkit);
|
||||
m.insert("meho", fa::meho);
|
||||
m.insert("microphone", fa::microphone);
|
||||
m.insert("microphoneslash", fa::microphoneslash);
|
||||
m.insert("minus", fa::minus);
|
||||
m.insert("minuscircle", fa::minuscircle);
|
||||
m.insert("minussquare", fa::minussquare);
|
||||
m.insert("minussquareo", fa::minussquareo);
|
||||
m.insert("mobile", fa::mobile);
|
||||
m.insert("mobilephone", fa::mobilephone);
|
||||
m.insert("money", fa::money);
|
||||
m.insert("moono", fa::moono);
|
||||
m.insert("mortarboard", fa::mortarboard);
|
||||
m.insert("music", fa::music);
|
||||
m.insert("navicon", fa::navicon);
|
||||
m.insert("openid", fa::openid);
|
||||
m.insert("outdent", fa::outdent);
|
||||
m.insert("pagelines", fa::pagelines);
|
||||
m.insert("paperplane", fa::paperplane);
|
||||
m.insert("paperplaneo", fa::paperplaneo);
|
||||
m.insert("paperclip", fa::paperclip);
|
||||
m.insert("paragraph", fa::paragraph);
|
||||
m.insert("paste", fa::paste);
|
||||
m.insert("pause", fa::pause);
|
||||
m.insert("paw", fa::paw);
|
||||
m.insert("pencil", fa::pencil);
|
||||
m.insert("pencilsquare", fa::pencilsquare);
|
||||
m.insert("pencilsquareo", fa::pencilsquareo);
|
||||
m.insert("phone", fa::phone);
|
||||
m.insert("phonesquare", fa::phonesquare);
|
||||
m.insert("photo", fa::photo);
|
||||
m.insert("pictureo", fa::pictureo);
|
||||
m.insert("piedpiper", fa::piedpiper);
|
||||
m.insert("piedpiperalt", fa::piedpiperalt);
|
||||
m.insert("piedpipersquare", fa::piedpipersquare);
|
||||
m.insert("pinterest", fa::pinterest);
|
||||
m.insert("pinterestsquare", fa::pinterestsquare);
|
||||
m.insert("plane", fa::plane);
|
||||
m.insert("play", fa::play);
|
||||
m.insert("playcircle", fa::playcircle);
|
||||
m.insert("playcircleo", fa::playcircleo);
|
||||
m.insert("plus", fa::plus);
|
||||
m.insert("pluscircle", fa::pluscircle);
|
||||
m.insert("plussquare", fa::plussquare);
|
||||
m.insert("plussquareo", fa::plussquareo);
|
||||
m.insert("poweroff", fa::poweroff);
|
||||
m.insert("print", fa::print);
|
||||
m.insert("puzzlepiece", fa::puzzlepiece);
|
||||
m.insert("qq", fa::qq);
|
||||
m.insert("qrcode", fa::qrcode);
|
||||
m.insert("question", fa::question);
|
||||
m.insert("questioncircle", fa::questioncircle);
|
||||
m.insert("quoteleft", fa::quoteleft);
|
||||
m.insert("quoteright", fa::quoteright);
|
||||
m.insert("ra", fa::ra);
|
||||
m.insert("random", fa::random);
|
||||
m.insert("rebel", fa::rebel);
|
||||
m.insert("recycle", fa::recycle);
|
||||
m.insert("reddit", fa::reddit);
|
||||
m.insert("redditsquare", fa::redditsquare);
|
||||
m.insert("refresh", fa::refresh);
|
||||
m.insert("renren", fa::renren);
|
||||
m.insert("reorder", fa::reorder);
|
||||
m.insert("repeat", fa::repeat);
|
||||
m.insert("reply", fa::reply);
|
||||
m.insert("replyall", fa::replyall);
|
||||
m.insert("retweet", fa::retweet);
|
||||
m.insert("rmb", fa::rmb);
|
||||
m.insert("road", fa::road);
|
||||
m.insert("rocket", fa::rocket);
|
||||
m.insert("rotateleft", fa::rotateleft);
|
||||
m.insert("rotateright", fa::rotateright);
|
||||
m.insert("rouble", fa::rouble);
|
||||
m.insert("rss", fa::rss);
|
||||
m.insert("rsssquare", fa::rsssquare);
|
||||
m.insert("rub", fa::rub);
|
||||
m.insert("ruble", fa::ruble);
|
||||
m.insert("rupee", fa::rupee);
|
||||
m.insert("save", fa::save);
|
||||
m.insert("scissors", fa::scissors);
|
||||
m.insert("search", fa::search);
|
||||
m.insert("searchminus", fa::searchminus);
|
||||
m.insert("searchplus", fa::searchplus);
|
||||
m.insert("send", fa::send);
|
||||
m.insert("sendo", fa::sendo);
|
||||
m.insert("share", fa::share);
|
||||
m.insert("sharealt", fa::sharealt);
|
||||
m.insert("sharealtsquare", fa::sharealtsquare);
|
||||
m.insert("sharesquare", fa::sharesquare);
|
||||
m.insert("sharesquareo", fa::sharesquareo);
|
||||
m.insert("shield", fa::shield);
|
||||
m.insert("shoppingcart", fa::shoppingcart);
|
||||
m.insert("signin", fa::signin);
|
||||
m.insert("signout", fa::signout);
|
||||
m.insert("signal", fa::signal);
|
||||
m.insert("sitemap", fa::sitemap);
|
||||
m.insert("skype", fa::skype);
|
||||
m.insert("slack", fa::slack);
|
||||
m.insert("sliders", fa::sliders);
|
||||
m.insert("smileo", fa::smileo);
|
||||
m.insert("sort", fa::sort);
|
||||
m.insert("sortalphaasc", fa::sortalphaasc);
|
||||
m.insert("sortalphadesc", fa::sortalphadesc);
|
||||
m.insert("sortamountasc", fa::sortamountasc);
|
||||
m.insert("sortamountdesc", fa::sortamountdesc);
|
||||
m.insert("sortasc", fa::sortasc);
|
||||
m.insert("sortdesc", fa::sortdesc);
|
||||
m.insert("sortdown", fa::sortdown);
|
||||
m.insert("sortnumericasc", fa::sortnumericasc);
|
||||
m.insert("sortnumericdesc", fa::sortnumericdesc);
|
||||
m.insert("sortup", fa::sortup);
|
||||
m.insert("soundcloud", fa::soundcloud);
|
||||
m.insert("spaceshuttle", fa::spaceshuttle);
|
||||
m.insert("spinner", fa::spinner);
|
||||
m.insert("spoon", fa::spoon);
|
||||
m.insert("spotify", fa::spotify);
|
||||
m.insert("square", fa::square);
|
||||
m.insert("squareo", fa::squareo);
|
||||
m.insert("stackexchange", fa::stackexchange);
|
||||
m.insert("stackoverflow", fa::stackoverflow);
|
||||
m.insert("star", fa::star);
|
||||
m.insert("starhalf", fa::starhalf);
|
||||
m.insert("starhalfempty", fa::starhalfempty);
|
||||
m.insert("starhalffull", fa::starhalffull);
|
||||
m.insert("starhalfo", fa::starhalfo);
|
||||
m.insert("staro", fa::staro);
|
||||
m.insert("steam", fa::steam);
|
||||
m.insert("steamsquare", fa::steamsquare);
|
||||
m.insert("stepbackward", fa::stepbackward);
|
||||
m.insert("stepforward", fa::stepforward);
|
||||
m.insert("stethoscope", fa::stethoscope);
|
||||
m.insert("stop", fa::stop);
|
||||
m.insert("strikethrough", fa::strikethrough);
|
||||
m.insert("stumbleupon", fa::stumbleupon);
|
||||
m.insert("stumbleuponcircle", fa::stumbleuponcircle);
|
||||
m.insert("subscript", fa::subscript);
|
||||
m.insert("suitcase", fa::suitcase);
|
||||
m.insert("suno", fa::suno);
|
||||
m.insert("superscript", fa::superscript);
|
||||
m.insert("support", fa::support);
|
||||
m.insert("table", fa::table);
|
||||
m.insert("tablet", fa::tablet);
|
||||
m.insert("tachometer", fa::tachometer);
|
||||
m.insert("tag", fa::tag);
|
||||
m.insert("tags", fa::tags);
|
||||
m.insert("tasks", fa::tasks);
|
||||
m.insert("taxi", fa::taxi);
|
||||
m.insert("tencentweibo", fa::tencentweibo);
|
||||
m.insert("terminal", fa::terminal);
|
||||
m.insert("textheight", fa::textheight);
|
||||
m.insert("textwidth", fa::textwidth);
|
||||
m.insert("th", fa::th);
|
||||
m.insert("thlarge", fa::thlarge);
|
||||
m.insert("thlist", fa::thlist);
|
||||
m.insert("thumbtack", fa::thumbtack);
|
||||
m.insert("thumbsdown", fa::thumbsdown);
|
||||
m.insert("thumbsodown", fa::thumbsodown);
|
||||
m.insert("thumbsoup", fa::thumbsoup);
|
||||
m.insert("thumbsup", fa::thumbsup);
|
||||
m.insert("ticket", fa::ticket);
|
||||
m.insert("times", fa::times);
|
||||
m.insert("timescircle", fa::timescircle);
|
||||
m.insert("timescircleo", fa::timescircleo);
|
||||
m.insert("tint", fa::tint);
|
||||
m.insert("toggledown", fa::toggledown);
|
||||
m.insert("toggleleft", fa::toggleleft);
|
||||
m.insert("toggleright", fa::toggleright);
|
||||
m.insert("toggleup", fa::toggleup);
|
||||
m.insert("trasho", fa::trasho);
|
||||
m.insert("tree", fa::tree);
|
||||
m.insert("trello", fa::trello);
|
||||
m.insert("trophy", fa::trophy);
|
||||
m.insert("truck", fa::truck);
|
||||
m.insert("tumblr", fa::tumblr);
|
||||
m.insert("tumblrsquare", fa::tumblrsquare);
|
||||
m.insert("turkishlira", fa::turkishlira);
|
||||
m.insert("twitter", fa::twitter);
|
||||
m.insert("twittersquare", fa::twittersquare);
|
||||
m.insert("umbrella", fa::umbrella);
|
||||
m.insert("underline", fa::underline);
|
||||
m.insert("undo", fa::undo);
|
||||
m.insert("university", fa::university);
|
||||
m.insert("unlink", fa::unlink);
|
||||
m.insert("unlock", fa::unlock);
|
||||
m.insert("unlockalt", fa::unlockalt);
|
||||
m.insert("unsorted", fa::unsorted);
|
||||
m.insert("upload", fa::upload);
|
||||
m.insert("usd", fa::usd);
|
||||
m.insert("user", fa::user);
|
||||
m.insert("usermd", fa::usermd);
|
||||
m.insert("users", fa::users);
|
||||
m.insert("videocamera", fa::videocamera);
|
||||
m.insert("vimeosquare", fa::vimeosquare);
|
||||
m.insert("vine", fa::vine);
|
||||
m.insert("vk", fa::vk);
|
||||
m.insert("volumedown", fa::volumedown);
|
||||
m.insert("volumeoff", fa::volumeoff);
|
||||
m.insert("volumeup", fa::volumeup);
|
||||
m.insert("warning", fa::warning);
|
||||
m.insert("wechat", fa::wechat);
|
||||
m.insert("weibo", fa::weibo);
|
||||
m.insert("weixin", fa::weixin);
|
||||
m.insert("wheelchair", fa::wheelchair);
|
||||
m.insert("windowsicon", fa::windowsicon);
|
||||
m.insert("won", fa::won);
|
||||
m.insert("wordpress", fa::wordpress);
|
||||
m.insert("wrench", fa::wrench);
|
||||
m.insert("xing", fa::xing);
|
||||
m.insert("xingsquare", fa::xingsquare);
|
||||
m.insert("yahoo", fa::yahoo);
|
||||
m.insert("yen", fa::yen);
|
||||
m.insert("youtube", fa::youtube);
|
||||
m.insert("youtubeplay", fa::youtubeplay);
|
||||
m.insert("youtubesquare", fa::youtubesquare);
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -18,377 +18,508 @@
|
||||
/// A list of all icon-names with the codepoint (unicode-value) on the right
|
||||
/// You can use the names on the page http://fortawesome.github.io/Font-Awesome/design.html
|
||||
enum class fa {
|
||||
glass = 0xf000,
|
||||
music = 0xf001,
|
||||
search = 0xf002,
|
||||
envelopeo = 0xf003,
|
||||
heart = 0xf004,
|
||||
star = 0xf005,
|
||||
staro = 0xf006,
|
||||
user = 0xf007,
|
||||
film = 0xf008,
|
||||
thlarge = 0xf009,
|
||||
th = 0xf00a,
|
||||
thlist = 0xf00b,
|
||||
check = 0xf00c,
|
||||
times = 0xf00d,
|
||||
searchplus = 0xf00e,
|
||||
searchminus = 0xf010,
|
||||
poweroff = 0xf011,
|
||||
signal = 0xf012,
|
||||
cog = 0xf013,
|
||||
trasho = 0xf014,
|
||||
home = 0xf015,
|
||||
fileo = 0xf016,
|
||||
clocko = 0xf017,
|
||||
road = 0xf018,
|
||||
download = 0xf019,
|
||||
arrowcircleodown = 0xf01a,
|
||||
arrowcircleoup = 0xf01b,
|
||||
inbox = 0xf01c,
|
||||
playcircleo = 0xf01d,
|
||||
repeat = 0xf01e,
|
||||
refresh = 0xf021,
|
||||
listalt = 0xf022,
|
||||
lock = 0xf023,
|
||||
flag = 0xf024,
|
||||
headphones = 0xf025,
|
||||
volumeoff = 0xf026,
|
||||
volumedown = 0xf027,
|
||||
volumeup = 0xf028,
|
||||
qrcode = 0xf029,
|
||||
barcode = 0xf02a,
|
||||
tag = 0xf02b,
|
||||
tags = 0xf02c,
|
||||
book = 0xf02d,
|
||||
bookmark = 0xf02e,
|
||||
print = 0xf02f,
|
||||
camera = 0xf030,
|
||||
font = 0xf031,
|
||||
bold = 0xf032,
|
||||
italic = 0xf033,
|
||||
textheight = 0xf034,
|
||||
textwidth = 0xf035,
|
||||
alignleft = 0xf036,
|
||||
aligncenter = 0xf037,
|
||||
alignright = 0xf038,
|
||||
alignjustify = 0xf039,
|
||||
list = 0xf03a,
|
||||
outdent = 0xf03b,
|
||||
indent = 0xf03c,
|
||||
videocamera = 0xf03d,
|
||||
pictureo = 0xf03e,
|
||||
pencil = 0xf040,
|
||||
mapmarker = 0xf041,
|
||||
adjust = 0xf042,
|
||||
tint = 0xf043,
|
||||
pencilsquareo = 0xf044,
|
||||
sharesquareo = 0xf045,
|
||||
checksquareo = 0xf046,
|
||||
arrows = 0xf047,
|
||||
stepbackward = 0xf048,
|
||||
fastbackward = 0xf049,
|
||||
backward = 0xf04a,
|
||||
play = 0xf04b,
|
||||
pause = 0xf04c,
|
||||
stop = 0xf04d,
|
||||
forward = 0xf04e,
|
||||
fastforward = 0xf050,
|
||||
stepforward = 0xf051,
|
||||
eject = 0xf052,
|
||||
chevronleft = 0xf053,
|
||||
chevronright = 0xf054,
|
||||
pluscircle = 0xf055,
|
||||
minuscircle = 0xf056,
|
||||
timescircle = 0xf057,
|
||||
checkcircle = 0xf058,
|
||||
questioncircle = 0xf059,
|
||||
infocircle = 0xf05a,
|
||||
crosshairs = 0xf05b,
|
||||
timescircleo = 0xf05c,
|
||||
checkcircleo = 0xf05d,
|
||||
ban = 0xf05e,
|
||||
arrowleft = 0xf060,
|
||||
arrowright = 0xf061,
|
||||
arrowup = 0xf062,
|
||||
arrowdown = 0xf063,
|
||||
share = 0xf064,
|
||||
expand = 0xf065,
|
||||
compress = 0xf066,
|
||||
plus = 0xf067,
|
||||
minus = 0xf068,
|
||||
asterisk = 0xf069,
|
||||
exclamationcircle = 0xf06a,
|
||||
gift = 0xf06b,
|
||||
leaf = 0xf06c,
|
||||
fire = 0xf06d,
|
||||
eye = 0xf06e,
|
||||
eyeslash = 0xf070,
|
||||
exclamationtriangle = 0xf071,
|
||||
plane = 0xf072,
|
||||
calendar = 0xf073,
|
||||
random = 0xf074,
|
||||
comment = 0xf075,
|
||||
magnet = 0xf076,
|
||||
chevronup = 0xf077,
|
||||
chevrondown = 0xf078,
|
||||
retweet = 0xf079,
|
||||
shoppingcart = 0xf07a,
|
||||
folder = 0xf07b,
|
||||
folderopen = 0xf07c,
|
||||
arrowsv = 0xf07d,
|
||||
arrowsh = 0xf07e,
|
||||
barcharto = 0xf080,
|
||||
twittersquare = 0xf081,
|
||||
facebooksquare = 0xf082,
|
||||
cameraretro = 0xf083,
|
||||
key = 0xf084,
|
||||
cogs = 0xf085,
|
||||
comments = 0xf086,
|
||||
thumbsoup = 0xf087,
|
||||
thumbsodown = 0xf088,
|
||||
starhalf = 0xf089,
|
||||
hearto = 0xf08a,
|
||||
signout = 0xf08b,
|
||||
linkedinsquare = 0xf08c,
|
||||
thumbtack = 0xf08d,
|
||||
externallink = 0xf08e,
|
||||
signin = 0xf090,
|
||||
trophy = 0xf091,
|
||||
githubsquare = 0xf092,
|
||||
upload = 0xf093,
|
||||
lemono = 0xf094,
|
||||
phone = 0xf095,
|
||||
squareo = 0xf096,
|
||||
bookmarko = 0xf097,
|
||||
phonesquare = 0xf098,
|
||||
twitter = 0xf099,
|
||||
facebook = 0xf09a,
|
||||
github = 0xf09b,
|
||||
unlock = 0xf09c,
|
||||
creditcard = 0xf09d,
|
||||
rss = 0xf09e,
|
||||
hddo = 0xf0a0,
|
||||
bullhorn = 0xf0a1,
|
||||
bell = 0xf0f3,
|
||||
certificate = 0xf0a3,
|
||||
handoright = 0xf0a4,
|
||||
handoleft = 0xf0a5,
|
||||
handoup = 0xf0a6,
|
||||
handodown = 0xf0a7,
|
||||
arrowcircleleft = 0xf0a8,
|
||||
arrowcircleright = 0xf0a9,
|
||||
arrowcircleup = 0xf0aa,
|
||||
arrowcircledown = 0xf0ab,
|
||||
globe = 0xf0ac,
|
||||
wrench = 0xf0ad,
|
||||
tasks = 0xf0ae,
|
||||
filter = 0xf0b0,
|
||||
briefcase = 0xf0b1,
|
||||
arrowsalt = 0xf0b2,
|
||||
users = 0xf0c0,
|
||||
link = 0xf0c1,
|
||||
cloud = 0xf0c2,
|
||||
flask = 0xf0c3,
|
||||
scissors = 0xf0c4,
|
||||
fileso = 0xf0c5,
|
||||
paperclip = 0xf0c6,
|
||||
floppyo = 0xf0c7,
|
||||
square = 0xf0c8,
|
||||
bars = 0xf0c9,
|
||||
listul = 0xf0ca,
|
||||
listol = 0xf0cb,
|
||||
strikethrough = 0xf0cc,
|
||||
underline = 0xf0cd,
|
||||
table = 0xf0ce,
|
||||
magic = 0xf0d0,
|
||||
truck = 0xf0d1,
|
||||
pinterest = 0xf0d2,
|
||||
pinterestsquare = 0xf0d3,
|
||||
googleplussquare = 0xf0d4,
|
||||
googleplus = 0xf0d5,
|
||||
money = 0xf0d6,
|
||||
caretdown = 0xf0d7,
|
||||
caretup = 0xf0d8,
|
||||
caretleft = 0xf0d9,
|
||||
caretright = 0xf0da,
|
||||
columns = 0xf0db,
|
||||
sort = 0xf0dc,
|
||||
sortasc = 0xf0dd,
|
||||
sortdesc = 0xf0de,
|
||||
envelope = 0xf0e0,
|
||||
linkedin = 0xf0e1,
|
||||
undo = 0xf0e2,
|
||||
gavel = 0xf0e3,
|
||||
tachometer = 0xf0e4,
|
||||
commento = 0xf0e5,
|
||||
commentso = 0xf0e6,
|
||||
bolt = 0xf0e7,
|
||||
sitemap = 0xf0e8,
|
||||
umbrella = 0xf0e9,
|
||||
clipboard = 0xf0ea,
|
||||
lightbulbo = 0xf0eb,
|
||||
exchange = 0xf0ec,
|
||||
clouddownload = 0xf0ed,
|
||||
cloudupload = 0xf0ee,
|
||||
usermd = 0xf0f0,
|
||||
stethoscope = 0xf0f1,
|
||||
suitcase = 0xf0f2,
|
||||
bello = 0xf0a2,
|
||||
coffee = 0xf0f4,
|
||||
cutlery = 0xf0f5,
|
||||
filetexto = 0xf0f6,
|
||||
buildingo = 0xf0f7,
|
||||
hospitalo = 0xf0f8,
|
||||
ambulance = 0xf0f9,
|
||||
medkit = 0xf0fa,
|
||||
fighterjet = 0xf0fb,
|
||||
beer = 0xf0fc,
|
||||
hsquare = 0xf0fd,
|
||||
plussquare = 0xf0fe,
|
||||
angledoubleleft = 0xf100,
|
||||
angledoubleright = 0xf101,
|
||||
angledoubleup = 0xf102,
|
||||
angledoubledown = 0xf103,
|
||||
angleleft = 0xf104,
|
||||
angleright = 0xf105,
|
||||
angleup = 0xf106,
|
||||
angledown = 0xf107,
|
||||
desktop = 0xf108,
|
||||
laptop = 0xf109,
|
||||
tablet = 0xf10a,
|
||||
mobile = 0xf10b,
|
||||
circleo = 0xf10c,
|
||||
quoteleft = 0xf10d,
|
||||
quoteright = 0xf10e,
|
||||
spinner = 0xf110,
|
||||
circle = 0xf111,
|
||||
reply = 0xf112,
|
||||
githubalt = 0xf113,
|
||||
foldero = 0xf114,
|
||||
folderopeno = 0xf115,
|
||||
smileo = 0xf118,
|
||||
frowno = 0xf119,
|
||||
meho = 0xf11a,
|
||||
gamepad = 0xf11b,
|
||||
keyboardo = 0xf11c,
|
||||
flago = 0xf11d,
|
||||
flagcheckered = 0xf11e,
|
||||
terminal = 0xf120,
|
||||
code = 0xf121,
|
||||
replyall = 0xf122,
|
||||
mailreplyall = 0xf122,
|
||||
starhalfo = 0xf123,
|
||||
locationarrow = 0xf124,
|
||||
crop = 0xf125,
|
||||
codefork = 0xf126,
|
||||
chainbroken = 0xf127,
|
||||
question = 0xf128,
|
||||
info = 0xf129,
|
||||
exclamation = 0xf12a,
|
||||
superscript = 0xf12b,
|
||||
subscript = 0xf12c,
|
||||
eraser = 0xf12d,
|
||||
puzzlepiece = 0xf12e,
|
||||
microphone = 0xf130,
|
||||
microphoneslash = 0xf131,
|
||||
shield = 0xf132,
|
||||
calendaro = 0xf133,
|
||||
fireextinguisher = 0xf134,
|
||||
rocket = 0xf135,
|
||||
maxcdn = 0xf136,
|
||||
chevroncircleleft = 0xf137,
|
||||
chevroncircleright = 0xf138,
|
||||
chevroncircleup = 0xf139,
|
||||
chevroncircledown = 0xf13a,
|
||||
html5 = 0xf13b,
|
||||
css3 = 0xf13c,
|
||||
anchor = 0xf13d,
|
||||
unlockalt = 0xf13e,
|
||||
bullseye = 0xf140,
|
||||
ellipsish = 0xf141,
|
||||
ellipsisv = 0xf142,
|
||||
rsssquare = 0xf143,
|
||||
playcircle = 0xf144,
|
||||
ticket = 0xf145,
|
||||
minussquare = 0xf146,
|
||||
minussquareo = 0xf147,
|
||||
levelup = 0xf148,
|
||||
leveldown = 0xf149,
|
||||
checksquare = 0xf14a,
|
||||
pencilsquare = 0xf14b,
|
||||
externallinksquare = 0xf14c,
|
||||
sharesquare = 0xf14d,
|
||||
compass = 0xf14e,
|
||||
caretsquareodown = 0xf150,
|
||||
caretsquareoup = 0xf151,
|
||||
caretsquareoright = 0xf152,
|
||||
eur = 0xf153,
|
||||
gbp = 0xf154,
|
||||
usd = 0xf155,
|
||||
inr = 0xf156,
|
||||
jpy = 0xf157,
|
||||
rub = 0xf158,
|
||||
krw = 0xf159,
|
||||
btc = 0xf15a,
|
||||
file = 0xf15b,
|
||||
filetext = 0xf15c,
|
||||
sortalphaasc = 0xf15d,
|
||||
sortalphadesc = 0xf15e,
|
||||
sortamountasc = 0xf160,
|
||||
sortamountdesc = 0xf161,
|
||||
sortnumericasc = 0xf162,
|
||||
sortnumericdesc = 0xf163,
|
||||
thumbsup = 0xf164,
|
||||
thumbsdown = 0xf165,
|
||||
youtubesquare = 0xf166,
|
||||
youtube = 0xf167,
|
||||
xing = 0xf168,
|
||||
xingsquare = 0xf169,
|
||||
youtubeplay = 0xf16a,
|
||||
dropbox = 0xf16b,
|
||||
stackoverflow = 0xf16c,
|
||||
instagram = 0xf16d,
|
||||
flickr = 0xf16e,
|
||||
adn = 0xf170,
|
||||
bitbucket = 0xf171,
|
||||
bitbucketsquare = 0xf172,
|
||||
tumblr = 0xf173,
|
||||
tumblrsquare = 0xf174,
|
||||
longarrowdown = 0xf175,
|
||||
longarrowup = 0xf176,
|
||||
longarrowleft = 0xf177,
|
||||
longarrowright = 0xf178,
|
||||
appleicon = 0xf179,
|
||||
windowsicon = 0xf17a,
|
||||
androidicon = 0xf17b,
|
||||
linuxicon = 0xf17c,
|
||||
dribbble = 0xf17d,
|
||||
skype = 0xf17e,
|
||||
foursquare = 0xf180,
|
||||
trello = 0xf181,
|
||||
female = 0xf182,
|
||||
male = 0xf183,
|
||||
gittip = 0xf184,
|
||||
suno = 0xf185,
|
||||
moono = 0xf186,
|
||||
archive = 0xf187,
|
||||
bug = 0xf188,
|
||||
vk = 0xf189,
|
||||
weibo = 0xf18a,
|
||||
renren = 0xf18b,
|
||||
pagelines = 0xf18c,
|
||||
stackexchange = 0xf18d,
|
||||
arrowcircleoright = 0xf18e,
|
||||
arrowcircleoleft = 0xf190,
|
||||
caretsquareoleft = 0xf191,
|
||||
dotcircleo = 0xf192,
|
||||
wheelchair = 0xf193,
|
||||
vimeosquare = 0xf194,
|
||||
tryicon = 0xf195,
|
||||
plussquareo = 0xf196
|
||||
|
||||
|
||||
adjust = 0xf042,
|
||||
adn = 0xf170,
|
||||
aligncenter = 0xf037,
|
||||
alignjustify = 0xf039,
|
||||
alignleft = 0xf036,
|
||||
alignright = 0xf038,
|
||||
ambulance = 0xf0f9,
|
||||
anchor = 0xf13d,
|
||||
androidicon = 0xf17b,
|
||||
angledoubledown = 0xf103,
|
||||
angledoubleleft = 0xf100,
|
||||
angledoubleright = 0xf101,
|
||||
angledoubleup = 0xf102,
|
||||
angledown = 0xf107,
|
||||
angleleft = 0xf104,
|
||||
angleright = 0xf105,
|
||||
angleup = 0xf106,
|
||||
apple = 0xf179,
|
||||
archive = 0xf187,
|
||||
arrowcircledown = 0xf0ab,
|
||||
arrowcircleleft = 0xf0a8,
|
||||
arrowcircleodown = 0xf01a,
|
||||
arrowcircleoleft = 0xf190,
|
||||
arrowcircleoright = 0xf18e,
|
||||
arrowcircleoup = 0xf01b,
|
||||
arrowcircleright = 0xf0a9,
|
||||
arrowcircleup = 0xf0aa,
|
||||
arrowdown = 0xf063,
|
||||
arrowleft = 0xf060,
|
||||
arrowright = 0xf061,
|
||||
arrowup = 0xf062,
|
||||
arrows = 0xf047,
|
||||
arrowsalt = 0xf0b2,
|
||||
arrowsh = 0xf07e,
|
||||
arrowsv = 0xf07d,
|
||||
asterisk = 0xf069,
|
||||
automobile = 0xf1b9,
|
||||
backward = 0xf04a,
|
||||
ban = 0xf05e,
|
||||
bank = 0xf19c,
|
||||
barcharto = 0xf080,
|
||||
barcode = 0xf02a,
|
||||
bars = 0xf0c9,
|
||||
beer = 0xf0fc,
|
||||
behance = 0xf1b4,
|
||||
behancesquare = 0xf1b5,
|
||||
bell = 0xf0f3,
|
||||
bello = 0xf0a2,
|
||||
bitbucket = 0xf171,
|
||||
bitbucketsquare = 0xf172,
|
||||
bitcoin = 0xf15a,
|
||||
bold = 0xf032,
|
||||
bolt = 0xf0e7,
|
||||
bomb = 0xf1e2,
|
||||
book = 0xf02d,
|
||||
bookmark = 0xf02e,
|
||||
bookmarko = 0xf097,
|
||||
briefcase = 0xf0b1,
|
||||
btc = 0xf15a,
|
||||
bug = 0xf188,
|
||||
building = 0xf1ad,
|
||||
buildingo = 0xf0f7,
|
||||
bullhorn = 0xf0a1,
|
||||
bullseye = 0xf140,
|
||||
cab = 0xf1ba,
|
||||
calendar = 0xf073,
|
||||
calendaro = 0xf133,
|
||||
camera = 0xf030,
|
||||
cameraretro = 0xf083,
|
||||
car = 0xf1b9,
|
||||
caretdown = 0xf0d7,
|
||||
caretleft = 0xf0d9,
|
||||
caretright = 0xf0da,
|
||||
caretsquareodown = 0xf150,
|
||||
caretsquareoleft = 0xf191,
|
||||
caretsquareoright = 0xf152,
|
||||
caretsquareoup = 0xf151,
|
||||
caretup = 0xf0d8,
|
||||
certificate = 0xf0a3,
|
||||
chain = 0xf0c1,
|
||||
chainbroken = 0xf127,
|
||||
check = 0xf00c,
|
||||
checkcircle = 0xf058,
|
||||
checkcircleo = 0xf05d,
|
||||
checksquare = 0xf14a,
|
||||
checksquareo = 0xf046,
|
||||
chevroncircledown = 0xf13a,
|
||||
chevroncircleleft = 0xf137,
|
||||
chevroncircleright = 0xf138,
|
||||
chevroncircleup = 0xf139,
|
||||
chevrondown = 0xf078,
|
||||
chevronleft = 0xf053,
|
||||
chevronright = 0xf054,
|
||||
chevronup = 0xf077,
|
||||
child = 0xf1ae,
|
||||
circle = 0xf111,
|
||||
circleo = 0xf10c,
|
||||
circleonotch = 0xf1ce,
|
||||
circlethin = 0xf1db,
|
||||
clipboard = 0xf0ea,
|
||||
clocko = 0xf017,
|
||||
cloud = 0xf0c2,
|
||||
clouddownload = 0xf0ed,
|
||||
cloudupload = 0xf0ee,
|
||||
cny = 0xf157,
|
||||
code = 0xf121,
|
||||
codefork = 0xf126,
|
||||
codepen = 0xf1cb,
|
||||
coffee = 0xf0f4,
|
||||
cog = 0xf013,
|
||||
cogs = 0xf085,
|
||||
columns = 0xf0db,
|
||||
comment = 0xf075,
|
||||
commento = 0xf0e5,
|
||||
comments = 0xf086,
|
||||
commentso = 0xf0e6,
|
||||
compass = 0xf14e,
|
||||
compress = 0xf066,
|
||||
copy = 0xf0c5,
|
||||
creditcard = 0xf09d,
|
||||
crop = 0xf125,
|
||||
crosshairs = 0xf05b,
|
||||
css3 = 0xf13c,
|
||||
cube = 0xf1b2,
|
||||
cubes = 0xf1b3,
|
||||
cut = 0xf0c4,
|
||||
cutlery = 0xf0f5,
|
||||
dashboard = 0xf0e4,
|
||||
database = 0xf1c0,
|
||||
dedent = 0xf03b,
|
||||
delicious = 0xf1a5,
|
||||
desktop = 0xf108,
|
||||
deviantart = 0xf1bd,
|
||||
digg = 0xf1a6,
|
||||
dollar = 0xf155,
|
||||
dotcircleo = 0xf192,
|
||||
download = 0xf019,
|
||||
dribbble = 0xf17d,
|
||||
dropbox = 0xf16b,
|
||||
drupal = 0xf1a9,
|
||||
edit = 0xf044,
|
||||
eject = 0xf052,
|
||||
ellipsish = 0xf141,
|
||||
ellipsisv = 0xf142,
|
||||
empire = 0xf1d1,
|
||||
envelope = 0xf0e0,
|
||||
envelopeo = 0xf003,
|
||||
envelopesquare = 0xf199,
|
||||
eraser = 0xf12d,
|
||||
eur = 0xf153,
|
||||
euro = 0xf153,
|
||||
exchange = 0xf0ec,
|
||||
exclamation = 0xf12a,
|
||||
exclamationcircle = 0xf06a,
|
||||
exclamationtriangle = 0xf071,
|
||||
expand = 0xf065,
|
||||
externallink = 0xf08e,
|
||||
externallinksquare = 0xf14c,
|
||||
eye = 0xf06e,
|
||||
eyeslash = 0xf070,
|
||||
facebook = 0xf09a,
|
||||
facebooksquare = 0xf082,
|
||||
fastbackward = 0xf049,
|
||||
fastforward = 0xf050,
|
||||
fax = 0xf1ac,
|
||||
female = 0xf182,
|
||||
fighterjet = 0xf0fb,
|
||||
file = 0xf15b,
|
||||
filearchiveo = 0xf1c6,
|
||||
fileaudioo = 0xf1c7,
|
||||
filecodeo = 0xf1c9,
|
||||
fileexcelo = 0xf1c3,
|
||||
fileimageo = 0xf1c5,
|
||||
filemovieo = 0xf1c8,
|
||||
fileo = 0xf016,
|
||||
filepdfo = 0xf1c1,
|
||||
filephotoo = 0xf1c5,
|
||||
filepictureo = 0xf1c5,
|
||||
filepowerpointo = 0xf1c4,
|
||||
filesoundo = 0xf1c7,
|
||||
filetext = 0xf15c,
|
||||
filetexto = 0xf0f6,
|
||||
filevideoo = 0xf1c8,
|
||||
filewordo = 0xf1c2,
|
||||
filezipo = 0xf1c6,
|
||||
fileso = 0xf0c5,
|
||||
film = 0xf008,
|
||||
filter = 0xf0b0,
|
||||
fire = 0xf06d,
|
||||
fireextinguisher = 0xf134,
|
||||
flag = 0xf024,
|
||||
flagcheckered = 0xf11e,
|
||||
flago = 0xf11d,
|
||||
flash = 0xf0e7,
|
||||
flask = 0xf0c3,
|
||||
flickr = 0xf16e,
|
||||
floppyo = 0xf0c7,
|
||||
folder = 0xf07b,
|
||||
foldero = 0xf114,
|
||||
folderopen = 0xf07c,
|
||||
folderopeno = 0xf115,
|
||||
font = 0xf031,
|
||||
forward = 0xf04e,
|
||||
foursquare = 0xf180,
|
||||
frowno = 0xf119,
|
||||
gamepad = 0xf11b,
|
||||
gavel = 0xf0e3,
|
||||
gbp = 0xf154,
|
||||
ge = 0xf1d1,
|
||||
gear = 0xf013,
|
||||
gears = 0xf085,
|
||||
gift = 0xf06b,
|
||||
git = 0xf1d3,
|
||||
gitsquare = 0xf1d2,
|
||||
github = 0xf09b,
|
||||
githubalt = 0xf113,
|
||||
githubsquare = 0xf092,
|
||||
gittip = 0xf184,
|
||||
glass = 0xf000,
|
||||
globe = 0xf0ac,
|
||||
google = 0xf1a0,
|
||||
googleplus = 0xf0d5,
|
||||
googleplussquare = 0xf0d4,
|
||||
graduationcap = 0xf19d,
|
||||
group = 0xf0c0,
|
||||
hsquare = 0xf0fd,
|
||||
hackernews = 0xf1d4,
|
||||
handodown = 0xf0a7,
|
||||
handoleft = 0xf0a5,
|
||||
handoright = 0xf0a4,
|
||||
handoup = 0xf0a6,
|
||||
hddo = 0xf0a0,
|
||||
header = 0xf1dc,
|
||||
headphones = 0xf025,
|
||||
heart = 0xf004,
|
||||
hearto = 0xf08a,
|
||||
history = 0xf1da,
|
||||
home = 0xf015,
|
||||
hospitalo = 0xf0f8,
|
||||
html5 = 0xf13b,
|
||||
image = 0xf03e,
|
||||
inbox = 0xf01c,
|
||||
indent = 0xf03c,
|
||||
info = 0xf129,
|
||||
infocircle = 0xf05a,
|
||||
inr = 0xf156,
|
||||
instagram = 0xf16d,
|
||||
institution = 0xf19c,
|
||||
italic = 0xf033,
|
||||
joomla = 0xf1aa,
|
||||
jpy = 0xf157,
|
||||
jsfiddle = 0xf1cc,
|
||||
key = 0xf084,
|
||||
keyboardo = 0xf11c,
|
||||
krw = 0xf159,
|
||||
language = 0xf1ab,
|
||||
laptop = 0xf109,
|
||||
leaf = 0xf06c,
|
||||
legal = 0xf0e3,
|
||||
lemono = 0xf094,
|
||||
leveldown = 0xf149,
|
||||
levelup = 0xf148,
|
||||
lifebouy = 0xf1cd,
|
||||
lifering = 0xf1cd,
|
||||
lifesaver = 0xf1cd,
|
||||
lightbulbo = 0xf0eb,
|
||||
link = 0xf0c1,
|
||||
linkedin = 0xf0e1,
|
||||
linkedinsquare = 0xf08c,
|
||||
linuxicon = 0xf17c,
|
||||
list = 0xf03a,
|
||||
listalt = 0xf022,
|
||||
listol = 0xf0cb,
|
||||
listul = 0xf0ca,
|
||||
locationarrow = 0xf124,
|
||||
lock = 0xf023,
|
||||
longarrowdown = 0xf175,
|
||||
longarrowleft = 0xf177,
|
||||
longarrowright = 0xf178,
|
||||
longarrowup = 0xf176,
|
||||
magic = 0xf0d0,
|
||||
magnet = 0xf076,
|
||||
mailforward = 0xf064,
|
||||
mailreply = 0xf112,
|
||||
mailreplyall = 0xf122,
|
||||
male = 0xf183,
|
||||
mapmarker = 0xf041,
|
||||
maxcdn = 0xf136,
|
||||
medkit = 0xf0fa,
|
||||
meho = 0xf11a,
|
||||
microphone = 0xf130,
|
||||
microphoneslash = 0xf131,
|
||||
minus = 0xf068,
|
||||
minuscircle = 0xf056,
|
||||
minussquare = 0xf146,
|
||||
minussquareo = 0xf147,
|
||||
mobile = 0xf10b,
|
||||
mobilephone = 0xf10b,
|
||||
money = 0xf0d6,
|
||||
moono = 0xf186,
|
||||
mortarboard = 0xf19d,
|
||||
music = 0xf001,
|
||||
navicon = 0xf0c9,
|
||||
openid = 0xf19b,
|
||||
outdent = 0xf03b,
|
||||
pagelines = 0xf18c,
|
||||
paperplane = 0xf1d8,
|
||||
paperplaneo = 0xf1d9,
|
||||
paperclip = 0xf0c6,
|
||||
paragraph = 0xf1dd,
|
||||
paste = 0xf0ea,
|
||||
pause = 0xf04c,
|
||||
paw = 0xf1b0,
|
||||
pencil = 0xf040,
|
||||
pencilsquare = 0xf14b,
|
||||
pencilsquareo = 0xf044,
|
||||
phone = 0xf095,
|
||||
phonesquare = 0xf098,
|
||||
photo = 0xf03e,
|
||||
pictureo = 0xf03e,
|
||||
piedpiper = 0xf1a7,
|
||||
piedpiperalt = 0xf1a8,
|
||||
piedpipersquare = 0xf1a7,
|
||||
pinterest = 0xf0d2,
|
||||
pinterestsquare = 0xf0d3,
|
||||
plane = 0xf072,
|
||||
play = 0xf04b,
|
||||
playcircle = 0xf144,
|
||||
playcircleo = 0xf01d,
|
||||
plus = 0xf067,
|
||||
pluscircle = 0xf055,
|
||||
plussquare = 0xf0fe,
|
||||
plussquareo = 0xf196,
|
||||
poweroff = 0xf011,
|
||||
print = 0xf02f,
|
||||
puzzlepiece = 0xf12e,
|
||||
qq = 0xf1d6,
|
||||
qrcode = 0xf029,
|
||||
question = 0xf128,
|
||||
questioncircle = 0xf059,
|
||||
quoteleft = 0xf10d,
|
||||
quoteright = 0xf10e,
|
||||
ra = 0xf1d0,
|
||||
random = 0xf074,
|
||||
rebel = 0xf1d0,
|
||||
recycle = 0xf1b8,
|
||||
reddit = 0xf1a1,
|
||||
redditsquare = 0xf1a2,
|
||||
refresh = 0xf021,
|
||||
renren = 0xf18b,
|
||||
reorder = 0xf0c9,
|
||||
repeat = 0xf01e,
|
||||
reply = 0xf112,
|
||||
replyall = 0xf122,
|
||||
retweet = 0xf079,
|
||||
rmb = 0xf157,
|
||||
road = 0xf018,
|
||||
rocket = 0xf135,
|
||||
rotateleft = 0xf0e2,
|
||||
rotateright = 0xf01e,
|
||||
rouble = 0xf158,
|
||||
rss = 0xf09e,
|
||||
rsssquare = 0xf143,
|
||||
rub = 0xf158,
|
||||
ruble = 0xf158,
|
||||
rupee = 0xf156,
|
||||
save = 0xf0c7,
|
||||
scissors = 0xf0c4,
|
||||
search = 0xf002,
|
||||
searchminus = 0xf010,
|
||||
searchplus = 0xf00e,
|
||||
send = 0xf1d8,
|
||||
sendo = 0xf1d9,
|
||||
share = 0xf064,
|
||||
sharealt = 0xf1e0,
|
||||
sharealtsquare = 0xf1e1,
|
||||
sharesquare = 0xf14d,
|
||||
sharesquareo = 0xf045,
|
||||
shield = 0xf132,
|
||||
shoppingcart = 0xf07a,
|
||||
signin = 0xf090,
|
||||
signout = 0xf08b,
|
||||
signal = 0xf012,
|
||||
sitemap = 0xf0e8,
|
||||
skype = 0xf17e,
|
||||
slack = 0xf198,
|
||||
sliders = 0xf1de,
|
||||
smileo = 0xf118,
|
||||
sort = 0xf0dc,
|
||||
sortalphaasc = 0xf15d,
|
||||
sortalphadesc = 0xf15e,
|
||||
sortamountasc = 0xf160,
|
||||
sortamountdesc = 0xf161,
|
||||
sortasc = 0xf0de,
|
||||
sortdesc = 0xf0dd,
|
||||
sortdown = 0xf0dd,
|
||||
sortnumericasc = 0xf162,
|
||||
sortnumericdesc = 0xf163,
|
||||
sortup = 0xf0de,
|
||||
soundcloud = 0xf1be,
|
||||
spaceshuttle = 0xf197,
|
||||
spinner = 0xf110,
|
||||
spoon = 0xf1b1,
|
||||
spotify = 0xf1bc,
|
||||
square = 0xf0c8,
|
||||
squareo = 0xf096,
|
||||
stackexchange = 0xf18d,
|
||||
stackoverflow = 0xf16c,
|
||||
star = 0xf005,
|
||||
starhalf = 0xf089,
|
||||
starhalfempty = 0xf123,
|
||||
starhalffull = 0xf123,
|
||||
starhalfo = 0xf123,
|
||||
staro = 0xf006,
|
||||
steam = 0xf1b6,
|
||||
steamsquare = 0xf1b7,
|
||||
stepbackward = 0xf048,
|
||||
stepforward = 0xf051,
|
||||
stethoscope = 0xf0f1,
|
||||
stop = 0xf04d,
|
||||
strikethrough = 0xf0cc,
|
||||
stumbleupon = 0xf1a4,
|
||||
stumbleuponcircle = 0xf1a3,
|
||||
subscript = 0xf12c,
|
||||
suitcase = 0xf0f2,
|
||||
suno = 0xf185,
|
||||
superscript = 0xf12b,
|
||||
support = 0xf1cd,
|
||||
table = 0xf0ce,
|
||||
tablet = 0xf10a,
|
||||
tachometer = 0xf0e4,
|
||||
tag = 0xf02b,
|
||||
tags = 0xf02c,
|
||||
tasks = 0xf0ae,
|
||||
taxi = 0xf1ba,
|
||||
tencentweibo = 0xf1d5,
|
||||
terminal = 0xf120,
|
||||
textheight = 0xf034,
|
||||
textwidth = 0xf035,
|
||||
th = 0xf00a,
|
||||
thlarge = 0xf009,
|
||||
thlist = 0xf00b,
|
||||
thumbtack = 0xf08d,
|
||||
thumbsdown = 0xf165,
|
||||
thumbsodown = 0xf088,
|
||||
thumbsoup = 0xf087,
|
||||
thumbsup = 0xf164,
|
||||
ticket = 0xf145,
|
||||
times = 0xf00d,
|
||||
timescircle = 0xf057,
|
||||
timescircleo = 0xf05c,
|
||||
tint = 0xf043,
|
||||
toggledown = 0xf150,
|
||||
toggleleft = 0xf191,
|
||||
toggleright = 0xf152,
|
||||
toggleup = 0xf151,
|
||||
trasho = 0xf014,
|
||||
tree = 0xf1bb,
|
||||
trello = 0xf181,
|
||||
trophy = 0xf091,
|
||||
truck = 0xf0d1,
|
||||
tumblr = 0xf173,
|
||||
tumblrsquare = 0xf174,
|
||||
turkishlira = 0xf195,
|
||||
twitter = 0xf099,
|
||||
twittersquare = 0xf081,
|
||||
umbrella = 0xf0e9,
|
||||
underline = 0xf0cd,
|
||||
undo = 0xf0e2,
|
||||
university = 0xf19c,
|
||||
unlink = 0xf127,
|
||||
unlock = 0xf09c,
|
||||
unlockalt = 0xf13e,
|
||||
unsorted = 0xf0dc,
|
||||
upload = 0xf093,
|
||||
usd = 0xf155,
|
||||
user = 0xf007,
|
||||
usermd = 0xf0f0,
|
||||
users = 0xf0c0,
|
||||
videocamera = 0xf03d,
|
||||
vimeosquare = 0xf194,
|
||||
vine = 0xf1ca,
|
||||
vk = 0xf189,
|
||||
volumedown = 0xf027,
|
||||
volumeoff = 0xf026,
|
||||
volumeup = 0xf028,
|
||||
warning = 0xf071,
|
||||
wechat = 0xf1d7,
|
||||
weibo = 0xf18a,
|
||||
weixin = 0xf1d7,
|
||||
wheelchair = 0xf193,
|
||||
windowsicon = 0xf17a,
|
||||
won = 0xf159,
|
||||
wordpress = 0xf19a,
|
||||
wrench = 0xf0ad,
|
||||
xing = 0xf168,
|
||||
xingsquare = 0xf169,
|
||||
yahoo = 0xf19e,
|
||||
yen = 0xf157,
|
||||
youtube = 0xf167,
|
||||
youtubeplay = 0xf16a,
|
||||
youtubesquare = 0xf166
|
||||
};
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>fonts/fontawesome-4.0.3.ttf</file>
|
||||
<file>fonts/fontawesome-4.1.0.ttf</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
Binary file not shown.
BIN
QtAwesome/fonts/fontawesome-4.1.0.ttf
Executable file
BIN
QtAwesome/fonts/fontawesome-4.1.0.ttf
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user