summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-05 16:49:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-05 16:49:43 -0600
commitae8aba1e0f17943046e6bfa889b169f7fc41da0d (patch)
tree55f1fb88e026f52e98dd169e35d828a09541cf0c
parent0b6dc881694713582da657b087d14c5054c48ca6 (diff)
downloadtqt3-ae8aba1e.tar.gz
tqt3-ae8aba1e.zip
Update from qt3
-rw-r--r--src/kernel/ntqnamespace.h1
-rw-r--r--src/kernel/qpainter.cpp2
-rw-r--r--src/kernel/qpainter_x11.cpp17
3 files changed, 15 insertions, 5 deletions
diff --git a/src/kernel/ntqnamespace.h b/src/kernel/ntqnamespace.h
index 8e49c580..acff7a96 100644
--- a/src/kernel/ntqnamespace.h
+++ b/src/kernel/ntqnamespace.h
@@ -768,6 +768,7 @@ public:
DotLine,
DashDotLine,
DashDotDotLine,
+ FineDotLine,
MPenStyle = 0x0f
};
diff --git a/src/kernel/qpainter.cpp b/src/kernel/qpainter.cpp
index 79960a4e..e3841b4d 100644
--- a/src/kernel/qpainter.cpp
+++ b/src/kernel/qpainter.cpp
@@ -414,6 +414,8 @@ typedef TQPtrStack<TQWMatrix> TQWMatrixStack;
\value DashDotDotLine one dash, two dots, one dash, two dots.
+ \value FineDotLine single pixel dots separated by single pixels.
+
\value MPenStyle mask of the pen styles.
\img pen-styles.png Pen Styles
diff --git a/src/kernel/qpainter_x11.cpp b/src/kernel/qpainter_x11.cpp
index a35b5b3b..0be2db0a 100644
--- a/src/kernel/qpainter_x11.cpp
+++ b/src/kernel/qpainter_x11.cpp
@@ -786,6 +786,13 @@ void TQPainter::updatePen()
dashes[5] = dot;
dash_len = 6;
allow_zero_lw = FALSE;
+ break;
+ case FineDotLine:
+ dot = 1;
+ dashes[0] = dot;
+ dashes[1] = dot;
+ dash_len = 2;
+ allow_zero_lw = FALSE;
}
Q_ASSERT( dash_len <= (int) sizeof(dashes) );
@@ -1836,21 +1843,21 @@ void TQPainter::drawWinFocusRect( int x, int y, int w, int h,
if ( xorPaint ) {
if ( TQColor::numBitPlanes() <= 8 )
- setPen( color1 );
+ setPen( TQPen(color1, 0, TQt::FineDotLine) );
else
- setPen( white );
+ setPen( TQPen(white, 0, TQt::FineDotLine) );
setRasterOp( XorROP );
} else {
if ( tqGray( bgColor.rgb() ) < 128 )
- setPen( white );
+ setPen( TQPen(white, 0, TQt::FineDotLine) );
else
- setPen( black );
+ setPen( TQPen(black, 0, TQt::FineDotLine) );
}
if ( testf(ExtDev|VxF|WxF) ) {
if ( testf(ExtDev) ) {
TQPDevCmdParam param[1];
- TQRect r( x, y, w, h );
+ TQRect r( x, y, w-1, h-1 );
param[0].rect = &r;
if ( !pdev->cmd( TQPaintDevice::PdcDrawRect, this, param ) || !hd) {
setRasterOp( old_rop );