compile
[kdegraphics.git] / kolourpaint / compat / kpBug.cpp
blobb003baa60935f6113e99e617ad3b5a1f181640c8
2 /*
3 Copyright (c) 2003-2007 Clarence Dang <dang@kde.org>
4 All rights reserved.
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
10 1. Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #define DEBUG_KP_BUG 0
32 #include <kpBug.h>
34 #include <qabstractbutton.h>
35 #include <qbuttongroup.h>
36 #include <qpoint.h>
37 #include <qrect.h>
39 #include <kdebug.h>
42 // public static
43 QAbstractButton *kpBug::QButtonGroup_CheckedButton (const QButtonGroup *buttonGroup)
45 QAbstractButton *button = buttonGroup->checkedButton ();
46 QAbstractButton *ret = (button && button->isChecked () ? button : 0);
47 #if DEBUG_KP_BUG
48 kDebug () << "kpBug::QButtonGroup_CheckedButton(" << buttonGroup << ")"
49 << " QButtonGroup::checkedButton() would return " << button
50 << " but we return " << ret
51 << endl;
52 #endif
53 return ret;
57 // public static
58 QRect kpBug::QRect_Normalized (const QRect &rect)
60 const QPoint topLeft (qMin (rect.left (), rect.right ()),
61 qMin (rect.top (), rect.bottom ()));
62 const QPoint bottomRight (qMax (rect.left (), rect.right ()),
63 qMax (rect.top (), rect.bottom ()));
65 const QRect out (topLeft, bottomRight);
66 #if DEBUG_KP_BUG
67 kDebug () << "kpBug::QRect_Normalized("
68 << rect.topLeft () << "," << rect.bottomRight ()
69 << ") returning ("
70 << out.topLeft () << "," << out.bottomRight ()
71 << ")" << endl;
72 #endif
74 return out;