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 /kdeui/tests/kdockwidgettest.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 'kdeui/tests/kdockwidgettest.cpp')
-rw-r--r-- | kdeui/tests/kdockwidgettest.cpp | 255 |
1 files changed, 0 insertions, 255 deletions
diff --git a/kdeui/tests/kdockwidgettest.cpp b/kdeui/tests/kdockwidgettest.cpp deleted file mode 100644 index 7d4625357..000000000 --- a/kdeui/tests/kdockwidgettest.cpp +++ /dev/null @@ -1,255 +0,0 @@ -/*************************************************************************** - copyright : (C) 1999 by Judin Max - email : novaprint@mtu-net.ru - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ - -#include "kdockwidgettest.h" - -#include <tqpushbutton.h> -#include <kapplication.h> -#include <kiconloader.h> -#include <kstatusbar.h> -#include <kmenubar.h> -#include <ktoolbar.h> -#include <tqvbox.h> - -static const char*folder[]={ -"16 16 9 1", -"g c #808080", -"b c #ffa858", -"e c #c0c0c0", -"# c #000000", -"c c #ffdca8", -". c None", -"a c #585858", -"f c #a0a0a4", -"d c #ffffff", -"..#a#...........", -".#abc##.........", -".#daabc#####....", -".#ddeaabcccb#...", -".#dedeeabccca...", -".#edeeeeaaaab#..", -".#deeeeeeefe#ba.", -".#eeeeeeefef#ba.", -".#eeeeeefeff#ba.", -".#eeeeefefff#ba.", -".##geefeffff#ba.", -"...##gefffff#ba.", -".....##fffff#ba.", -".......##fff#b##", -".........##f#b##", -"...........####."}; - - -DockApplication::DockApplication( const char* name ) -: KDockMainWindow( 0L, name ) -{ - TQPixmap p(folder); - - initMenuBar(); - initToolBars(); - initStatusBar(); - - /*****************************************************/ - dock = createDockWidget( "Green Widget", p ); - dock->setCaption("Green"); - dock->setGeometry(50, 50, 100, 100); - l = new TQWidget(dock); - l->setBackgroundColor(green); - l->setMinimumSize(100,100); - dock->setWidget(l); - /*****************************************************/ - dock1 = createDockWidget( "Blue Widget", p ); - dock1->setCaption("Blue"); - dock1->setGeometry( 150, 150, 100, 100); - setView( dock1 ); - setMainDockWidget( dock1 ); - - mainW = new TQWidget( dock1, "createdOnBlueDock" ); - mainW->setBackgroundColor(blue); - mainW->setMinimumSize(300,150); - dock1->setWidget( mainW ); - /*****************************************************/ - - KDockWidget* dock2 = createDockWidget( "Yellow Widget", p ); - dock2->setGeometry(300, 300, 100, 100); - dock2->setCaption("Yellow"); - - /* test set new header widget...*/ -// dock2->setHeader( new KDockWidgetHeader(dock2) ); - - TQWidget* l2 = new TQWidget(dock2); - l2->setBackgroundColor(yellow); - dock2->setWidget( l2 ); - /*****************************************************/ - - /*****************************************************/ - dock5 = createDockWidget( "Container Widget", p ); - dock5->setCaption("Container"); - dock5->setGeometry(50, 50, 100, 100); - l = new CTW(dock5); - l->setBackgroundColor(white); - l->setMinimumSize(100,100); - dock5->setWidget(l); - if (::tqqt_cast<KDockContainer*>(l)) qDebug("KDockContainer created for dock 5"); - /*****************************************************/ - - /*****************************************************/ - dock6 = createDockWidget( "Container Widget2", p ); - dock6->setCaption("Container2"); - dock6->setGeometry(50, 50, 100, 100); - l = new CTW(dock6); - l->setBackgroundColor(white); - l->setMinimumSize(100,100); - dock6->setWidget(l); - if (::tqqt_cast<KDockContainer*>(l)) qDebug("KDockContainer created for dock 6"); - /*****************************************************/ - - - - TQPushButton* b1 = new TQPushButton(mainW); - b1->setGeometry(10, 10, 250, 25); - b1->setText("write dock config"); - connect(b1, TQT_SIGNAL(clicked()), TQT_SLOT(wConfig())); - - TQPushButton* b2 = new TQPushButton(mainW); - b2->setGeometry(10, 35, 250, 25); - b2->setText("read dock config"); - connect(b2, TQT_SIGNAL(clicked()), TQT_SLOT(rConfig())); - - m_bname = new TQPushButton(mainW); - m_bname->setGeometry(10, 60, 250, 25); - m_bname->setEnabled( false ); - - TQPushButton *b3 = new TQPushButton(mainW); - b3->setGeometry(10,95,250,25); - b3->setText("change the icon of the green widget"); - connect(b3,TQT_SIGNAL(clicked()), TQT_SLOT(gSetPix1())); - - TQPushButton *b4 = new TQPushButton(mainW); - b4->setGeometry(10,130,250,25); - b4->setText("remove icon "); - connect(b4,TQT_SIGNAL(clicked()), TQT_SLOT(gSetPix2())); - - setGeometry(200, 100, 500, 300); - - qDebug("load config"); - readDockConfig(); - - updateButton(); -} - -DockApplication::~DockApplication() -{ - qDebug("Close & store config"); - writeDockConfig(); -} - -void DockApplication::rConfig() -{ - readDockConfig(); -} - -void DockApplication::wConfig() -{ - writeDockConfig(); -} - -void DockApplication::initMenuBar() -{ - TQPixmap p(folder); - TQPopupMenu *file_menu = new TQPopupMenu(); - - file_menu->insertItem(p, "Change Green Widget Caption", this, TQT_SLOT(cap()) ); - file_menu->insertSeparator(); - file_menu->insertItem(p, "Set Green Widget as MainDockWidget", this, TQT_SLOT(greenMain()) ); - file_menu->insertItem(p, "Set Blue Widget as MainDockWidget", this, TQT_SLOT(blueMain()) ); - file_menu->insertItem(p, "Set NULL as MainDockWidget", this, TQT_SLOT(nullMain()) ); - - KMenuBar* menu_bar = menuBar(); - menu_bar->insertItem( "&Test", file_menu ); - menu_bar->insertItem( "&Docking Windows", dockHideShowMenu() ); -} - -void DockApplication::initToolBars() -{ - TQPixmap p(folder); - KToolBar* tool_bar_0 = toolBar(0); - tool_bar_0->setFullSize(false); - tool_bar_0->insertButton( p, 1 ); - tool_bar_0->insertButton(p, 2 ); - tool_bar_0->setFullSize( true ); -} - -void DockApplication::initStatusBar() -{ - KStatusBar* status_bar = statusBar(); - status_bar->insertItem("Welcome to KDockWidget test...", 1); -} - -void DockApplication::cap() -{ - if ( dock->caption() != "Test Caption1" ) - dock->setCaption("Test Caption1"); - else - dock->setCaption("Another Caption"); -} - -void DockApplication::greenMain() -{ - setMainDockWidget( dock ); - updateButton(); -} - -void DockApplication::blueMain() -{ - setMainDockWidget( dock1 ); - updateButton(); -} - -void DockApplication::nullMain() -{ - setMainDockWidget( 0L ); - updateButton(); -} - -void DockApplication::updateButton() -{ - if ( getMainDockWidget() ) - m_bname->setText(TQString("MainDockWidget is %1").arg(getMainDockWidget()->name())); - else - m_bname->setText("MainDockWidget is NULL"); -} - -void DockApplication::gSetPix1() { - dock->setPixmap(SmallIcon("agent")); - -} - -void DockApplication::gSetPix2() { - dock->setPixmap(); - -} - -int main(int argc, char* argv[]) { - KApplication a(argc,argv, "kdockdemoapp1"); - DockApplication* ap = new DockApplication("DockWidget demo"); - ap->setCaption("DockWidget demo"); - a.setMainWidget(ap); - ap->show(); - return a.exec(); -} - - -#include "kdockwidgettest.moc" - |