Giter Club home page Giter Club logo

qtawesome's Introduction

QtAwesome - Font Awesome support for Qt applications

Description

QtAwesome is a simple library that can be used to add Font Awesome icons to your Qt application.

NOTE: Though the name is QtAwesome and currently it's very Font Awesome based, you can use every other icon/glyph font you want.

The class can also be used to manage your own dynamic code-drawn icons, by adding named icon-painters.

Updated to FontAwesome 4.7.0

This library has been updated to Font Awesome version 4.7.0.

  • In the 4.5.0 version the _linux name has been changed to fa_linux. (Makes the naming of conflicting/invalid names more consistent, like fa_try and fa_500px)
  • You can find the previous FontAwesome 4 c++11 library in the c++11 branch.
  • You can find the previous FontAwesome 3 library in the fontawesome-3 branch.

Note about previous c++11

I removed the C++11 requirement. And moved the c++11 code to a c++11 branch. It's not that I don't like c++11, but the typed enum made the code less flexible then it is now. Just integers it is. Simpler is better.

Installation

The easiest way to include QtAweome in your project is to copy the QtAwesome directory to your project tree and add the following include() to your Qt project file:

include(QtAwesome/QtAwesome.pri)

Now you are good to go!

Usage

You probably want to create a single QtAwesome object for your whole application:

    QtAwesome* awesome = new QtAwesome(qApp)
    awesome->initFontAwesome();     // This line is important as it loads the font and initializes the named icon map

    // or specify your own Font Awesome source
    awesome->initFontAwesome("my-copy-of-fontawesome-4.7");
  • Add an accessor to this object (i.e. a global function, member of your application object, or whatever you like).
  • Use an icon name from the Font Awesome Cheatsheet.

Example

// You should create a single object of QtAwesome.
QtAwesome* awesome = new QtAwesome(qApp);

// This call would default to resource ":/fonts/fontawesome-4.7.0.ttf"
awesome->initFontAwesome();
// or specify your own Font Awesome source
awesome->initFontAwesome("my-copy-of-fontawesome-4.7");

// Next create your icon with the help of the icon-enumeration (no dashes):
QPushButton* beerButton = new QPushButton(awesome->icon(fa::beer), "Cheers!");

// You can also use 'string' names to access the icons. (The string version omits the 'fa-' or 'icon-' prefix and has no dashes)
QPushButton* coffeeButton = new QPushButton(awesome->icon("coffee"), "Black please!");

// When you create an icon you can supply some options for your icons:
// The available options can be found at the "Default options"-section

QVariantMap options;
options.insert("color" , QColor(255,0,0));
QPushButton* musicButton = new QPushButton(awesome->icon(fa::music, options), "Music");

// You can also change the default options.
// for example if you always would like to have green icons you could call)
awesome->setDefaultOption("color-disabled", QColor(0,255,0));

// You can also directly render a label with this font
QLabel* label = new QLabel(QChar(fa::group));
label->setFont(awesome->font(16));

Example custom painter

This example registers a custom painter for supporting a duplicate icon (it draws 2 "plus marks"):

class DuplicateIconPainter : public QtAwesomeIconPainter
{
public:
    virtual void paint(QtAwesome* awesome, QPainter* painter, const QRect& rectIn, QIcon::Mode mode, QIcon::State state, const QVariantMap& options)
    {
        int drawSize = qRound(rectIn.height()*0.5);
        int offset = rectIn.height() / 4;
        QChar chr = QChar(static_cast<int>(fa::plus));

        painter->setFont(awesome->font(drawSize));

        painter->setPen(QColor(100,100,100));
        painter->drawText(QRect(QPoint(offset*2, offset*2), QSize(drawSize, drawSize)), chr , QTextOption(Qt::AlignCenter|Qt::AlignVCenter));

        painter->setPen(QColor(50,50,50));
        painter->drawText(QRect(QPoint(rectIn.width()-drawSize-offset, rectIn.height()-drawSize-offset), QSize(drawSize, drawSize)), chr , QTextOption(Qt::AlignCenter|Qt::AlignVCenter));

    }
};

awesome->give("duplicate", new DuplicateIconPainter());

Default options:

The following options are default in the QtAwesome class.

setDefaultOption("color", QColor(50,50,50));
setDefaultOption("color-disabled", QColor(70,70,70,60));
setDefaultOption("color-active", QColor(10,10,10));
setDefaultOption("color-selected", QColor(10,10,10));

setDefaultOption("text", QString());      // internal option
setDefaultOption("text-disabled", QString());
setDefaultOption("text-active", QString());
setDefaultOption("text-selected", QString());

setDefaultOption("scale-factor", 0.9);

When creating an icon, it first populates the options-map with the default options from the QtAwesome object. After that the options are expanded/overwritten by the options supplied to the icon.

It is possible to use another glyph per icon-state. For example to make an icon-unlock symbol switch to locked when selected, you could supply the following option:

  options.insert("text-selected", QString(fa::lock));

Color and text options have the following structure: keyname-iconmode-iconstate

Where iconmode normal is empty And iconstate On is off.

So the list of items used is:

  • color
  • color-disabled
  • color-active
  • color-selected
  • color-off
  • color-disabled-off
  • color-active-off
  • color-selected-off
  • text
  • text-disabled
  • text-active
  • text-selected
  • text-off
  • text-disabled-off
  • text-active-off
  • text-selected-off

License

MIT License. Copyright 2013 - Reliable Bits Software by Blommers IT. http://blommersit.nl/

The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome"

Contact

Known issues and workarounds

On Mac OS X, placing an qtAwesome icon in QMainWindow menu, doesn't work directly. See the following issue: [gamecreature#10]

A workaround for this problem is converting it to a Pixmap icon like this:

QAction* menuAction = new QAction("test");
menuAction->setIcon(awesome->icon(fa::beer).pixmap(32,32));

Remarks

I've created this project because I needed some nice icons for my own Qt project. After doing a lot of css/html5 work and being spoiled by the ease of twitter bootstrap with Font Awesome, I thought it would be nice to be able to use these icons for my Qt project.

I've slightly changed the code from the original, added some more documentation, but it's still a work in progress. So feel free to drop me an e-mail for your suggestions and improvements!

There are still some things todo, like:

  • document the usage of another icon font
  • add some tests
  • do some code cleanup

Thanks go to the contributors of this project!

And of course last but not least,

Many thanks go to Dave Gandy an the other Font Awesome contributors!! http://fortawesome.github.com/Font-Awesome And of course to the Qt team/contributors for supplying this great cross-platform c++ library.

Contributions are welcome! Feel free to fork and send a pull request through Github.

qtawesome's People

Contributors

gamecreature avatar lazybobcat avatar msiedlarek avatar gsauthof avatar joelnordell avatar nthuemmel avatar stennie avatar jzsun avatar w1res avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.