diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
commit | e16866e072f94410321d70daedbcb855ea878cac (patch) | |
tree | ee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdecore/tests/kdebugtest.cpp | |
parent | a58c20c1a7593631a1b50213c805507ebc16adaf (diff) | |
download | tdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdecore/tests/kdebugtest.cpp')
-rw-r--r-- | kdecore/tests/kdebugtest.cpp | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/kdecore/tests/kdebugtest.cpp b/kdecore/tests/kdebugtest.cpp deleted file mode 100644 index ee49127ea..000000000 --- a/kdecore/tests/kdebugtest.cpp +++ /dev/null @@ -1,98 +0,0 @@ -#include "kdebug.h" -#include <tqwidget.h> -#include <kinstance.h> -#include <iostream> -#include <tqapplication.h> -#include <tqpen.h> -#include <tqvariant.h> - -class TestWidget : public QWidget -{ - -public: - TestWidget(TQWidget* parent, const char* name) - : TQWidget(parent, name) - { - kdDebug().form("mytest %s", "hello") << endl; - TQString test = "%20C this is a string"; - kdDebug(150) << test << endl; - TQCString cstr = test.latin1(); - kdDebug(150) << test << endl; - TQChar ch = 'a'; - kdDebug() << "TQChar a: " << ch << endl; - ch = '\r'; - kdDebug() << "TQChar \\r: " << ch << endl; - kdDebug() << k_lineinfo << "error on this line" << endl; - kdDebug(2 == 2) << "this is right " << perror << endl; - kdDebug() << "Before instance creation" << endl; - kdDebug(1202) << "Before instance creation" << endl; - KInstance i("kdebugtest"); - kdDebug(1) << "kDebugInfo with inexisting area number" << endl; - kdDebug(1202) << "This number has a value of " << 5 << endl; - // kdDebug() << "This number should come out as appname " << 5 << " " << "test" << endl; - kdWarning() << "1+1 = " << 1+1+1 << endl; - kdError(1+1 != 2) << "there is something really odd!" << endl; - TQString s = "mystring"; - kdDebug() << s << endl; - kdError(1202) << "Error !!!" << endl; - kdError() << "Error with no area" << endl; - - kdDebug() << "Printing a null TQWidget pointer: " << (TQWidget*)0 << endl; - - kdDebug() << "char " << '^' << " " << char(26) << endl; - TQPoint p(0,9); - kdDebug() << p << endl; - - TQRect r(9,12,58,234); - kdDebug() << r << endl; - - TQRegion reg(r); - reg += TQRect(1,60,200,59); - kdDebug() << reg << endl; - - TQStringList sl; - sl << "hi" << "this" << "list" << "is" << "short"; - kdDebug() << sl << endl; - - TQValueList<int> il; - kdDebug() << "Empty TQValueList<int>: " << il << endl; - il << 1 << 2 << 3 << 4 << 5; - kdDebug() << "TQValueList<int> filled: " << il << endl; - - Q_LLONG big = 65536LL*65536*500; - kdDebug() << big << endl; - - TQVariant v( 0.12345 ); - kdDebug() << "Variant: " << v << endl; - v = TQPen( Qt::red ); - kdDebug() << "Variant: " << v << endl; - - TQByteArray data( 6 ); - data[0] = 42; - data[1] = 'H'; - data[2] = 'e'; - data[3] = 'l'; - data[4] = 'l'; - data[5] = 'o'; - kdDebug() << data << endl; - data.resize( 80 ); - data.fill( 42 ); - kdDebug() << data << endl; - } - void resizeEvent(TQResizeEvent*) - { - kdDebug() << this << endl; - } -}; - -int main(int argc, char** argv) -{ - TQApplication app(argc, argv); - TestWidget widget(0, "NoNameWidget"); - widget.setGeometry(45, 54, 120, 80); - widget.show(); - app.setMainWidget(&widget); - app.exec(); - return 0; -} - |