author | drw <drw> | 2002-04-30 01:09:14 (UTC) |
---|---|---|
committer | drw <drw> | 2002-04-30 01:09:14 (UTC) |
commit | ed745f7e21eb32fbf5d9a3f1734d79b25cfa629c (patch) (side-by-side diff) | |
tree | b91b936b12d1d25a813858b76a62e023d8ac2d23 | |
parent | b794af4c50efffe239c94e5a015e90565ff991c3 (diff) | |
download | opie-ed745f7e21eb32fbf5d9a3f1734d79b25cfa629c.zip opie-ed745f7e21eb32fbf5d9a3f1734d79b25cfa629c.tar.gz opie-ed745f7e21eb32fbf5d9a3f1734d79b25cfa629c.tar.bz2 |
Renamed QColorDialog to OColorDialog
-rw-r--r-- | libopie/colordialog.cpp | 56 | ||||
-rw-r--r-- | libopie/colordialog.h | 22 | ||||
-rw-r--r-- | libopie/colorpopupmenu.cpp | 2 |
3 files changed, 40 insertions, 40 deletions
diff --git a/libopie/colordialog.cpp b/libopie/colordialog.cpp index 6d72ff6..684d6ea 100644 --- a/libopie/colordialog.cpp +++ b/libopie/colordialog.cpp @@ -1,8 +1,8 @@ /**************************************************************************** ** $Id$ ** -** Implementation of QColorDialog class +** Implementation of OColorDialog class ** ** Created : 990222 ** ** Copyright (C) 1999-2000 Trolltech AS. All rights reserved. @@ -475,51 +475,51 @@ QColorShower::QColorShower( QWidget *parent, const char *name ) this, SLOT( setRgb( QRgb ) ) ); hEd = new QColNumLineEdit( this ); hEd->setValidator( val360 ); - QLabel *l = new QLabel( hEd, QColorDialog::tr("Hue:"), this ); + QLabel *l = new QLabel( hEd, OColorDialog::tr("Hue:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 0, 1 ); gl->addWidget( hEd, 0, 2 ); sEd = new QColNumLineEdit( this ); sEd->setValidator( val256 ); - l = new QLabel( sEd, QColorDialog::tr("Sat:"), this ); + l = new QLabel( sEd, OColorDialog::tr("Sat:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 1, 1 ); gl->addWidget( sEd, 1, 2 ); vEd = new QColNumLineEdit( this ); vEd->setValidator( val256 ); - l = new QLabel( vEd, QColorDialog::tr("Val:"), this ); + l = new QLabel( vEd, OColorDialog::tr("Val:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 2, 1 ); gl->addWidget( vEd, 2, 2 ); rEd = new QColNumLineEdit( this ); rEd->setValidator( val256 ); - l = new QLabel( rEd, QColorDialog::tr("Red:"), this ); + l = new QLabel( rEd, OColorDialog::tr("Red:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 0, 3 ); gl->addWidget( rEd, 0, 4 ); gEd = new QColNumLineEdit( this ); gEd->setValidator( val256 ); - l = new QLabel( gEd, QColorDialog::tr("Green:"), this ); + l = new QLabel( gEd, OColorDialog::tr("Green:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 1, 3 ); gl->addWidget( gEd, 1, 4 ); bEd = new QColNumLineEdit( this ); bEd->setValidator( val256 ); - l = new QLabel( bEd, QColorDialog::tr("Blue:"), this ); + l = new QLabel( bEd, OColorDialog::tr("Blue:"), this ); l->setAlignment( AlignRight|AlignVCenter ); gl->addWidget( l, 2, 3 ); gl->addWidget( bEd, 2, 4 ); alphaEd = new QColNumLineEdit( this ); alphaEd->setValidator( val256 ); - alphaLab = new QLabel( alphaEd, QColorDialog::tr("Alpha channel:"), this ); + alphaLab = new QLabel( alphaEd, OColorDialog::tr("Alpha channel:"), this ); alphaLab->setAlignment( AlignRight|AlignVCenter ); gl->addMultiCellWidget( alphaLab, 3, 3, 1, 3 ); gl->addWidget( alphaEd, 3, 4 ); alphaEd->hide(); @@ -606,13 +606,13 @@ void QColorShower::setHsv( int h, int s, int v ) showCurrentColor(); } -class QColorDialogPrivate : public QObject +class OColorDialogPrivate : public QObject { Q_OBJECT public: - QColorDialogPrivate( QColorDialog *p ); + OColorDialogPrivate( OColorDialog *p ); QRgb currentColor() const { return cs->currentColor(); } void setCurrentColor( QRgb rgb ); int currentAlpha() const { return cs->currentAlpha(); } @@ -628,32 +628,32 @@ private: QColorShower *cs; }; //sets all widgets to display h,s,v -void QColorDialogPrivate::newHsv( int h, int s, int v ) +void OColorDialogPrivate::newHsv( int h, int s, int v ) { cs->setHsv( h, s, v ); cp->setCol( h, s ); lp->setCol( h, s, v ); } //sets all widgets to display rgb -void QColorDialogPrivate::setCurrentColor( QRgb rgb ) +void OColorDialogPrivate::setCurrentColor( QRgb rgb ) { cs->setRgb( rgb ); newColorTypedIn( rgb ); } //sets all widgets exept cs to display rgb -void QColorDialogPrivate::newColorTypedIn( QRgb rgb ) +void OColorDialogPrivate::newColorTypedIn( QRgb rgb ) { int h, s, v; rgb2hsv(rgb, h, s, v ); cp->setCol( h, s ); lp->setCol( h, s, v); } -QColorDialogPrivate::QColorDialogPrivate( QColorDialog *dialog ) : +OColorDialogPrivate::OColorDialogPrivate( OColorDialog *dialog ) : QObject(dialog) { int border = 2; QVBoxLayout *topLay = new QVBoxLayout( dialog, border, 2 ); @@ -684,10 +684,10 @@ QColorDialogPrivate::QColorDialogPrivate( QColorDialog *dialog ) : // BEING REVISED: jo /*! - \class QColorDialog qcolordialog.h - \brief The QColorDialog class provides a dialog widget for specifying colors. + \class OColorDialog OColorDialog.h + \brief The OColorDialog class provides a dialog widget for specifying colors. \ingroup dialogs The color dialog's function is to allow users to choose colors - for instance, you might use this in a drawing program to allow the @@ -711,12 +711,12 @@ QColorDialogPrivate::QColorDialogPrivate( QColorDialog *dialog ) : \sa getColor() */ -QColorDialog::QColorDialog(QWidget* parent, const char* name, bool modal) : +OColorDialog::OColorDialog(QWidget* parent, const char* name, bool modal) : QDialog(parent, name, modal ) { - d = new QColorDialogPrivate( this ); + d = new OColorDialogPrivate( this ); } /*! @@ -725,19 +725,19 @@ QColorDialog::QColorDialog(QWidget* parent, const char* name, bool modal) : the dialog. All colors allocated by the dialog will be deallocated before this function returns. */ -QColor QColorDialog::getColor( QColor initial, QWidget *parent, +QColor OColorDialog::getColor( QColor initial, QWidget *parent, const char *name ) { int allocContext = QColor::enterAllocContext(); - QColorDialog *dlg = new QColorDialog( parent, name, TRUE ); //modal + OColorDialog *dlg = new OColorDialog( parent, name, TRUE ); //modal if ( parent && parent->icon() && !parent->icon()->isNull() ) dlg->setIcon( *parent->icon() ); else if ( qApp->mainWidget() && qApp->mainWidget()->icon() && !qApp->mainWidget()->icon()->isNull() ) dlg->setIcon( *qApp->mainWidget()->icon() ); - dlg->setCaption( QColorDialog::tr( "Select color" ) ); + dlg->setCaption( OColorDialog::tr( "Select color" ) ); dlg->setColor( initial ); dlg->showMaximized(); int resultCode = dlg->exec(); QColor::leaveAllocContext(); @@ -762,13 +762,13 @@ QColor QColorDialog::getColor( QColor initial, QWidget *parent, If the user clicks Cancel the \a initial value is returned. */ -QRgb QColorDialog::getRgba( QRgb initial, bool *ok, +QRgb OColorDialog::getRgba( QRgb initial, bool *ok, QWidget *parent, const char* name ) { int allocContext = QColor::enterAllocContext(); - QColorDialog *dlg = new QColorDialog( parent, name, TRUE ); //modal + OColorDialog *dlg = new OColorDialog( parent, name, TRUE ); //modal dlg->setColor( initial ); dlg->setSelectedAlpha( qAlpha(initial) ); dlg->showMaximized(); int resultCode = dlg->exec(); @@ -796,9 +796,9 @@ QRgb QColorDialog::getRgba( QRgb initial, bool *ok, \sa setColor() */ -QColor QColorDialog::color() const +QColor OColorDialog::color() const { return QColor(d->currentColor()); } @@ -806,9 +806,9 @@ QColor QColorDialog::color() const /*! Destructs the dialog and frees any memory it allocated. */ -QColorDialog::~QColorDialog() +OColorDialog::~OColorDialog() { //d inherits QObject, so it is deleted by Qt. } @@ -818,9 +818,9 @@ QColorDialog::~QColorDialog() \sa color() */ -void QColorDialog::setColor( QColor c ) +void OColorDialog::setColor( QColor c ) { d->setCurrentColor( c.rgb() ); } @@ -831,9 +831,9 @@ void QColorDialog::setColor( QColor c ) Sets the initial alpha channel value to \a a, and show the alpha channel entry box. */ -void QColorDialog::setSelectedAlpha( int a ) +void OColorDialog::setSelectedAlpha( int a ) { d->showAlpha( TRUE ); d->setCurrentAlpha( a ); } @@ -842,9 +842,9 @@ void QColorDialog::setSelectedAlpha( int a ) /*! Returns the value selected for the alpha channel. */ -int QColorDialog::selectedAlpha() const +int OColorDialog::selectedAlpha() const { return d->currentAlpha(); } diff --git a/libopie/colordialog.h b/libopie/colordialog.h index a2d4d30..474bc61 100644 --- a/libopie/colordialog.h +++ b/libopie/colordialog.h @@ -1,8 +1,8 @@ /**************************************************************************** ** $Id$ ** -** Definition of QColorDialog class +** Definition of OColorDialog class ** ** Created : 990222 ** ** Copyright (C) 1992-2000 Trolltech AS. All rights reserved. @@ -34,18 +34,18 @@ ** not clear to you. ** **********************************************************************/ -#ifndef QCOLORDIALOG_H -#define QCOLORDIALOG_H +#ifndef OColorDialog_H +#define OColorDialog_H #ifndef QT_H #include <qdialog.h> #endif // QT_H -class QColorDialogPrivate; +class OColorDialogPrivate; -class Q_EXPORT QColorDialog : public QDialog +class Q_EXPORT OColorDialog : public QDialog { Q_OBJECT public: @@ -53,25 +53,25 @@ public: static QRgb getRgba( QRgb, bool* ok = 0, QWidget *parent=0, const char* name=0 ); private: - ~QColorDialog(); + ~OColorDialog(); - QColorDialog( QWidget* parent=0, const char* name=0, bool modal=FALSE ); + OColorDialog( QWidget* parent=0, const char* name=0, bool modal=FALSE ); void setColor( QColor ); // ### 3.0: make const QColor& QColor color() const; private: void setSelectedAlpha( int ); int selectedAlpha() const; private: - QColorDialogPrivate *d; - friend class QColorDialogPrivate; + OColorDialogPrivate *d; + friend class OColorDialogPrivate; private: // Disabled copy constructor and operator= #if defined(Q_DISABLE_COPY) - QColorDialog( const QColorDialog & ); - QColorDialog& operator=( const QColorDialog & ); + OColorDialog( const OColorDialog & ); + OColorDialog& operator=( const OColorDialog & ); #endif }; #endif diff --git a/libopie/colorpopupmenu.cpp b/libopie/colorpopupmenu.cpp index 35e91f4..9b50a8b 100644 --- a/libopie/colorpopupmenu.cpp +++ b/libopie/colorpopupmenu.cpp @@ -157,9 +157,9 @@ void ColorPopupMenu::buttonSelected( const QColor& color ) } void ColorPopupMenu::moreColorClicked() { - QColor color = QColorDialog::getColor( m_color ); + QColor color = OColorDialog::getColor( m_color ); m_color = color; emit colorSelected( color ); hide(); } |