From b10a61b1fd2fe561ba61a384d4a344bae2a4aa29 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 01:04:58 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- ksirc/puke/pkfiledialog.cpp | 123 -------------------------------------------- 1 file changed, 123 deletions(-) delete mode 100644 ksirc/puke/pkfiledialog.cpp (limited to 'ksirc/puke/pkfiledialog.cpp') diff --git a/ksirc/puke/pkfiledialog.cpp b/ksirc/puke/pkfiledialog.cpp deleted file mode 100644 index 53d37aa7..00000000 --- a/ksirc/puke/pkfiledialog.cpp +++ /dev/null @@ -1,123 +0,0 @@ -#include - - -#include - -#include "pkfiledialog.h" -#include "pkfiledialog-cmd.h" - -PObject * -PKFileDialog::createWidget(CreateArgs &ca) -{ - PKFileDialog *pw = new PKFileDialog(ca.parent); - KFileDialog *kfbd; - if(ca.fetchedObj != 0 && ca.fetchedObj->inherits("KFileDialog") == TRUE){ - kfbd = (KFileDialog *) ca.fetchedObj; - pw->setDeleteAble(FALSE); - } - else // Never takes a parent in Puke - kfbd = new KFileDialog("/", TQString(), 0L, "PukeKFileDialog", TRUE); - pw->setWidget(kfbd); - pw->setWidgetId(ca.pwI); - return pw; -} - - -PKFileDialog::PKFileDialog(PObject *parent) - : PWidget(parent) -{ - kfbd = 0; - setWidget(kfbd); -} - -PKFileDialog::~PKFileDialog() -{ - // kdDebug(5008) << "PLineEdit: in destructor" << endl; - /* - delete widget(); // Delete the frame - kfbd=0; // Set it to 0 - setWidget(kfbd); // Now set all widget() calls to 0. - */ -} - -void PKFileDialog::messageHandler(int fd, PukeMessage *pm) -{ - TQString selFile; - PukeMessage pmRet; - if(widget() == 0){ - kdDebug(5008) << "PKFileDialog: No Widget set" << endl; - return; - } - switch(pm->iCommand){ - case PUKE_KBFD_SET_PATH: - ((KFileDialog*)widget())->setURL(KURL(pm->cArg)); - - pmRet.iCommand = - pm->iCommand; - pmRet.iWinId = pm->iWinId; - pmRet.iArg = 0; - pmRet.iTextSize = widget()->baseURL().path().length(); -#warning check if the cast is okay - pmRet.cArg = (char*) widget()->baseURL().path().ascii(); - emit outputMessage(fd, &pmRet); - break; - case PUKE_KBFD_SET_FILTER: - widget()->setFilter(pm->cArg); - - pmRet.iCommand = - pm->iCommand; - pmRet.iWinId = pm->iWinId; - pmRet.iArg = 0; - pmRet.iTextSize = 0; - pmRet.cArg = 0; - emit outputMessage(fd, &pmRet); - break; - case PUKE_KBFD_SET_SELECTION: - widget()->setSelection(pm->cArg); - - pmRet.iCommand = - pm->iCommand; - pmRet.iWinId = pm->iWinId; - pmRet.iArg = 0; - selFile = widget()->selectedURL().path(); - pmRet.iTextSize = selFile.length(); -#warning check if the cast is okay - pmRet.cArg = (char*) selFile.ascii(); - emit outputMessage(fd, &pmRet); - break; - case PUKE_WIDGET_SHOW: - widget()->exec(); - pmRet.iCommand = PUKE_KBFD_FILE_SELECTED_ACK; - pmRet.iWinId = pm->iWinId; - pmRet.iArg = 0; - pmRet.cArg = new char[selFile.length()]; - selFile = widget()->selectedURL().path(); - // #### HPB: using strlen() 'cause we want the length of the .ascii() - // string. We should probably replace in the future. - memcpy(pmRet.cArg, selFile.ascii(), strlen(selFile.ascii())); - pmRet.iTextSize = selFile.length(); - emit outputMessage(widgetIden().fd, &pmRet); - delete pmRet.cArg; - break; - - default: - PWidget::messageHandler(fd, pm); - } -} - -void PKFileDialog::setWidget(TQObject *_kbfd) -{ - if(_kbfd != 0 && _kbfd->inherits("KFileBaseDialog") == FALSE) - { - errorInvalidSet(_kbfd); - return; - } - - kfbd = (KFileDialog *) _kbfd; - PWidget::setWidget(kfbd); -} - - -KFileDialog *PKFileDialog::widget() -{ - return kfbd; -} - -#include "pkfiledialog.moc" -- cgit v1.2.1