| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 | 
							- /*=========================================================================
 
-   Library:   CTK
 
-   Copyright (c) Kitware Inc.
 
-   Licensed under the Apache License, Version 2.0 (the "License");
 
-   you may not use this file except in compliance with the License.
 
-   You may obtain a copy of the License at
 
-       http://www.apache.org/licenses/LICENSE-2.0.txt
 
-   Unless required by applicable law or agreed to in writing, software
 
-   distributed under the License is distributed on an "AS IS" BASIS,
 
-   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-   See the License for the specific language governing permissions and
 
-   limitations under the License.
 
- =========================================================================*/
 
- // Qt includes
 
- #include <QApplication>
 
- #include <QDebug>
 
- #include <QFontDialog>
 
- #include <QMetaEnum>
 
- #include <QMetaObject>
 
- // CTK includes
 
- #include "ctkFontButton.h"
 
- //-----------------------------------------------------------------------------
 
- class ctkFontButtonPrivate
 
- {
 
-   Q_DECLARE_PUBLIC(ctkFontButton);
 
- protected:
 
-   ctkFontButton* const q_ptr;
 
- public:
 
-   ctkFontButtonPrivate(ctkFontButton& object);
 
-   void init();
 
-   void updateText();
 
-   QString fullNameWeight()const;
 
-   QFont Font;
 
-   QString FontTextFormat;
 
- };
 
- //-----------------------------------------------------------------------------
 
- ctkFontButtonPrivate::ctkFontButtonPrivate(ctkFontButton& object)
 
-   :q_ptr(&object)
 
- {
 
-   this->Font = qApp->font();
 
-   this->FontTextFormat = "fff-sss";
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkFontButtonPrivate::init()
 
- {
 
-   Q_Q(ctkFontButton);
 
-   QObject::connect(q, SIGNAL(clicked()), q, SLOT(browseFont()));
 
-   this->updateText();
 
- }
 
- //-----------------------------------------------------------------------------
 
- QString ctkFontButtonPrivate::fullNameWeight()const
 
- {
 
-   /** \todo: QFont:Weight is not yet in the meta object system
 
-   QMetaObject meta = QFont::staticMetaObject;
 
-   for (int i = 0; i < meta.enumeratorCount(); ++i)
 
-     {
 
-     QMetaEnum metaEnum = meta.enumerator(i);
 
-     if (metaEnum.name() == "Weight")
 
-       {
 
-       return QString(metaEnum.valueToKey(this->Font.weight()));
 
-       }
 
-     }
 
-   */
 
-   switch (this->Font.weight())
 
-     {
 
-     case QFont::Light:
 
-       return QString("Light");
 
-     case QFont::Normal:
 
-       return QString("Normal");
 
-     case QFont::DemiBold:
 
-       return QString("DemiBold");
 
-     case QFont::Bold:
 
-       return QString("Bold");
 
-     case QFont::Black:
 
-       return QString("Black");
 
-     default:
 
-       return QString();
 
-     }
 
-   return QString();
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkFontButtonPrivate::updateText()
 
- {
 
-   Q_Q(ctkFontButton);
 
-   QString text = this->FontTextFormat;
 
-   text.replace("fff", this->Font.family());
 
-   text.replace("sss", QString("%1pt").arg(this->Font.pointSize()));
 
-   text.replace("ss", QString("%1").arg(this->Font.pointSize()));
 
-   text.replace("www", this->fullNameWeight());
 
-   text.replace("ww", QString("%1").arg(this->Font.weight()));
 
-   text.replace("biu", QString("%1%2%3")
 
-     .arg(this->Font.bold() ? 'b' : '-')
 
-     .arg(this->Font.italic() ? 'i' : '-')
 
-     .arg(this->Font.underline() ? 'u' : '-'));
 
-   text.replace("bbb", this->Font.bold() ? "bold" : "");
 
-   text.replace("bb", this->Font.bold() ? "b" : "");
 
-   text.replace("iii", this->Font.italic() ? "italic" : "");
 
-   text.replace("ii", this->Font.italic() ? "i" : "");
 
-   text.replace("uuu", this->Font.underline() ? "underline" : "");
 
-   text.replace("uu", this->Font.underline() ? "u" : "");
 
-   q->setText(text);
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkFontButton::ctkFontButton(QWidget * parentWidget)
 
-   : QPushButton(parentWidget)
 
-   , d_ptr(new ctkFontButtonPrivate(*this))
 
- {
 
-   Q_D(ctkFontButton);
 
-   d->init();
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkFontButton::ctkFontButton(const QFont& font,
 
-                              QWidget * parentWidget)
 
-   : QPushButton(parentWidget)
 
-   , d_ptr(new ctkFontButtonPrivate(*this))
 
- {
 
-   Q_D(ctkFontButton);
 
-   d->init();
 
-   this->setCurrentFont(font);
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkFontButton::~ctkFontButton()
 
- {
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkFontButton::setCurrentFont(const QFont& newFont)
 
- {
 
-   Q_D(ctkFontButton);
 
-   if (d->Font == newFont)
 
-     {
 
-     return;
 
-     }
 
-   d->Font = newFont;
 
-   this->setFont(newFont);
 
-   d->updateText();
 
-   emit currentFontChanged(newFont);
 
- }
 
- //-----------------------------------------------------------------------------
 
- QFont ctkFontButton::currentFont()const
 
- {
 
-   Q_D(const ctkFontButton);
 
-   return d->Font;
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkFontButton::browseFont()
 
- {
 
-   Q_D(ctkFontButton);
 
-   bool ok = false;
 
-   QFont newFont = QFontDialog::getFont(&ok, d->Font, this);
 
-   if (ok)
 
-     {
 
-     this->setCurrentFont(newFont);
 
-     }
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkFontButton::setFontTextFormat(const QString& fontTextFormat)
 
- {
 
-   Q_D(ctkFontButton);
 
-   d->FontTextFormat = fontTextFormat;
 
-   d->updateText();
 
- }
 
- //-----------------------------------------------------------------------------
 
- QString ctkFontButton::fontTextFormat()const
 
- {
 
-   Q_D(const ctkFontButton);
 
-   return d->FontTextFormat;
 
- }
 
 
  |