X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Ffontbox.cpp;h=ba06a48e543bf2ffe455a02fab930e3077814858;hb=af32602b9d8075080d5805143f1cd47fc10672e1;hp=8ea742b69f8fec5b1a1d9c6ea83efe1983c31b6c;hpb=e5a77a32dbe17d9534d3099f1fd3fdacba199516;p=architektonas diff --git a/src/widgets/fontbox.cpp b/src/widgets/fontbox.cpp index 8ea742b..ba06a48 100644 --- a/src/widgets/fontbox.cpp +++ b/src/widgets/fontbox.cpp @@ -24,14 +24,14 @@ * Default Constructor. You must call init manually if you choose * to use this constructor. */ -QG_FontBox::QG_FontBox(QWidget * parent/*= 0*/, const char */*name = 0*/): QComboBox(parent) +FontBox::FontBox(QWidget * parent/*= 0*/, const char */*name = 0*/): QComboBox(parent) { } /** * Destructor */ -QG_FontBox::~QG_FontBox() +FontBox::~FontBox() { } @@ -39,7 +39,7 @@ QG_FontBox::~QG_FontBox() * Initialisation (called from constructor or manually but only * once). */ -void QG_FontBox::init() +void FontBox::init() { QStringList fonts; @@ -58,7 +58,7 @@ void QG_FontBox::init() slotFontChanged(currentIndex()); } -RS_Font * QG_FontBox::getFont() +RS_Font * FontBox::getFont() { return currentFont; } @@ -66,9 +66,9 @@ RS_Font * QG_FontBox::getFont() /** * Sets the currently selected width item to the given width. */ -void QG_FontBox::setFont(const QString & fName) +void FontBox::setFont(const QString & fName) { - RS_DEBUG->print("QG_FontBox::setFont %s\n", fName.toLatin1().data()); + RS_DEBUG->print("FontBox::setFont %s\n", fName.toLatin1().data()); // setCurrentText(fName); setItemText(currentIndex(), fName); // slotFontChanged(currentItem()); @@ -79,9 +79,9 @@ void QG_FontBox::setFont(const QString & fName) * Called when the font has changed. This method * sets the current font to the value chosen. */ -void QG_FontBox::slotFontChanged(int index) +void FontBox::slotFontChanged(int index) { - RS_DEBUG->print("QG_FontBox::slotFontChanged %d\n", index); + RS_DEBUG->print("FontBox::slotFontChanged %d\n", index); currentFont = RS_FONTLIST->requestFont(currentText()); if (currentFont != NULL)