summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:25:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:25:15 +0900
commite0b2927979dbe910a5c68732558bdd14b199426c (patch)
tree51700ea81a2d4e8e71f26048b505e03a87d1ff2c
parent90e63be6c35432e5475c8c66edb4309412f6572a (diff)
downloadtde-style-qtcurve-e0b29279.tar.gz
tde-style-qtcurve-e0b29279.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--style/qtc_tdestyle.cpp8
-rw-r--r--style/qtcurve.cpp8
2 files changed, 8 insertions, 8 deletions
diff --git a/style/qtc_tdestyle.cpp b/style/qtc_tdestyle.cpp
index 1686705..548507b 100644
--- a/style/qtc_tdestyle.cpp
+++ b/style/qtc_tdestyle.cpp
@@ -825,7 +825,7 @@ int TQtCTDEStyle::pixelMetric(PixelMetric m, TQStyleControlElementData ceData, C
case PM_SliderControlThickness: {
const TQSlider* slider = (const TQSlider*)widget;
TQSlider::TickSetting ts = slider->tickmarks();
- int thickness = (slider->orientation() == Qt::Horizontal) ?
+ int thickness = (slider->orientation() == TQt::Horizontal) ?
slider->height() : slider->width();
switch (ts) {
case TQSlider::NoMarks: // Use total area.
@@ -910,7 +910,7 @@ void TQtCTDEStyle::drawComplexControl( ComplexControl control,
const TQScrollBar *sb = (const TQScrollBar*)widget;
bool maxedOut = (sb->minValue() == sb->maxValue());
- bool horizontal = (sb->orientation() == Qt::Horizontal);
+ bool horizontal = (sb->orientation() == TQt::Horizontal);
SFlags sflags = ((horizontal ? Style_Horizontal : Style_Default) |
(maxedOut ? Style_Default : Style_Enabled));
@@ -1220,7 +1220,7 @@ TQRect TQtCTDEStyle::querySubControlMetrics( ComplexControl control,
bool nextScrollBar = d->scrollbarType & NextStyleScrollBar;
const TQScrollBar *sb = (const TQScrollBar*)widget;
- bool horizontal = sb->orientation() == Qt::Horizontal;
+ bool horizontal = sb->orientation() == TQt::Horizontal;
int sliderstart = sb->sliderStart();
int sbextent = pixelMetric(PM_ScrollBarExtent, ceData, elementFlags, widget);
int maxlen = (horizontal ? sb->width() : sb->height())
@@ -1706,7 +1706,7 @@ bool TQtCTDEStyle::objectEventHandler( TQStyleControlElementData ceData, Control
TQToolBar *toolbar = ::tqqt_cast< TQToolBar *>( frame );
TQRect r = pe->rect();
- if (toolbar && toolbar->orientation() == Qt::Vertical)
+ if (toolbar && toolbar->orientation() == TQt::Vertical)
horizontal = false;
if (horizontal) {
diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp
index 0cb0a66..c7f3c05 100644
--- a/style/qtcurve.cpp
+++ b/style/qtcurve.cpp
@@ -2368,7 +2368,7 @@ bool QtCurveStyle::objectEventHandler( const TQStyleControlElementData &ceData,
if(isWindowDragWidget(object, mev->pos()))
{
- if(/*TQt::NoModifier==mev->modifiers() && */ Qt::LeftButton==mev->button())
+ if(/*TQt::NoModifier==mev->modifiers() && */ TQt::LeftButton==mev->button())
{
TQWidget *wid = TQT_TQWIDGET(object);
itsDragWidget=wid;
@@ -5281,12 +5281,12 @@ void QtCurveStyle::drawControl(ControlElement control, TQPainter *p, const TQSty
TQPixmap *pixmap(mi->pixmap());
if(1==pixmap->depth())
- p->setBackgroundMode(Qt::OpaqueMode);
+ p->setBackgroundMode(TQt::OpaqueMode);
int diffw(((r.width() - pixmap->width())/2) +
((r.width() - pixmap->width())%2));
p->drawPixmap(r.x()+diffw, r.y()+1, *pixmap );
if(1==pixmap->depth())
- p->setBackgroundMode(Qt::TransparentMode);
+ p->setBackgroundMode(TQt::TransparentMode);
}
if(mi->popup())
@@ -5787,7 +5787,7 @@ void QtCurveStyle::drawComplexControl(ComplexControl control, TQPainter *p, cons
{
if(TBTN_JOINED==opts.tbarBtns)
{
- horizTBar=Qt::Horizontal==tb->orientation();
+ horizTBar=TQt::Horizontal==tb->orientation();
adjustToolbarButtons(widget, tb, leftAdjust, topAdjust, rightAdjust, bottomAdjust, round);
}
}