summaryrefslogtreecommitdiffstats
path: root/kmix/ksmallslider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/ksmallslider.cpp')
-rw-r--r--kmix/ksmallslider.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kmix/ksmallslider.cpp b/kmix/ksmallslider.cpp
index 5a67a8b6..77ab0112 100644
--- a/kmix/ksmallslider.cpp
+++ b/kmix/ksmallslider.cpp
@@ -37,19 +37,19 @@ static const TQColor backColor2 = "#000000";
*/
KSmallSlider::KSmallSlider( TQWidget *parent, const char *name )
- : TQWidget( parent, name ), _orientation( Qt::Vertical )
+ : TQWidget( parent, name ), _orientation( TQt::Vertical )
{
init();
}
-KSmallSlider::KSmallSlider( Qt::Orientation orientation, TQWidget *parent, const char *name )
+KSmallSlider::KSmallSlider( TQt::Orientation orientation, TQWidget *parent, const char *name )
: TQWidget( parent, name ), _orientation( orientation )
{
init();
}
KSmallSlider::KSmallSlider( int minValue, int maxValue, int pageStep,
- int value, Qt::Orientation orientation,
+ int value, TQt::Orientation orientation,
TQWidget *parent, const char *name )
: TQWidget( parent, name ),
TQRangeControl( minValue, maxValue, 1, pageStep, value ), _orientation( orientation)
@@ -68,7 +68,7 @@ void KSmallSlider::init()
//track = TRUE;
//setMouseTracking(true);
grayed = false;
- setFocusPolicy( TQ_TabFocus );
+ setFocusPolicy( TQWidget::TabFocus );
colHigh = TQColor(0,255,0);
colLow = TQColor(255,0,0);
@@ -91,7 +91,7 @@ int KSmallSlider::positionFromValue( int v ) const
int KSmallSlider::valueFromPosition( int p ) const
{
- if ( _orientation == Qt::Vertical ) {
+ if ( _orientation == TQt::Vertical ) {
// Coordiante System starts at TopLeft, but the slider values increase from Bottom to Top
// Thus "revert" the position
int avail = available();
@@ -140,7 +140,7 @@ void KSmallSlider::resizeEvent( TQResizeEvent * )
int KSmallSlider::available() const
{
int available = 0;
- if ( _orientation == Qt::Vertical) {
+ if ( _orientation == TQt::Vertical) {
available = height();
}
else {
@@ -225,13 +225,13 @@ void KSmallSlider::paintEvent( TQPaintEvent * )
int sliderPos = positionFromValue( TQRangeControl::value() );
// ------------------------ draw 3d border ---------------------------------------------
- style().tqdrawPrimitive ( TQStyle::PE_Panel, &p, TQRect( 0, 0, width(), height() ), colorGroup(), TRUE );
+ style().drawPrimitive ( TQStyle::PE_Panel, &p, TQRect( 0, 0, width(), height() ), colorGroup(), TRUE );
// ------------------------ draw lower/left part ----------------------------------------
if ( width()>2 && height()>2 )
{
- if ( _orientation == Qt::Horizontal ) {
+ if ( _orientation == TQt::Horizontal ) {
TQRect outer = TQRect( 1, 1, sliderPos, height() - 2 );
// kdDebug(67100) << "KSmallSlider::paintEvent: outer = " << outer << endl;
@@ -264,7 +264,7 @@ void KSmallSlider::paintEvent( TQPaintEvent * )
// -------- draw upper/right part --------------------------------------------------
TQRect inner;
- if ( _orientation == Qt::Vertical ) {
+ if ( _orientation == TQt::Vertical ) {
inner = TQRect( 1, 1, width() - 2, height() - 2 -sliderPos );
}
else {
@@ -286,7 +286,7 @@ void KSmallSlider::mousePressEvent( TQMouseEvent *e )
{
//resetState();
- if ( e->button() == Qt::RightButton ) {
+ if ( e->button() == TQt::RightButton ) {
return;
}
@@ -387,7 +387,7 @@ void KSmallSlider::subtractStep()
int KSmallSlider::goodPart( const TQPoint &p ) const
{
- if ( _orientation == Qt::Vertical ) {
+ if ( _orientation == TQt::Vertical ) {
return p.y() - 1;
}
else {
@@ -402,7 +402,7 @@ TQSize KSmallSlider::sizeHint() const
const int length = 25;
const int thick = 10;
- if ( _orientation == Qt::Vertical )
+ if ( _orientation == TQt::Vertical )
return TQSize( thick, length );
else
return TQSize( length, thick );
@@ -419,7 +419,7 @@ TQSize KSmallSlider::minimumSizeHint() const
TQSizePolicy KSmallSlider::sizePolicy() const
{
- if ( _orientation == Qt::Vertical ) {
+ if ( _orientation == TQt::Vertical ) {
//kdDebug(67100) << "KSmallSlider::sizePolicy() vertical value=(Fixed,MinimumExpanding)\n";
return TQSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Expanding );
}