/***************************************************************** Copyright (c) 1996-2001 the kicker authors. See file AUTHORS. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ******************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include // the header where the configuration dialog is defined. #include "exe_dlg.h" // our own definition #include "nonkdeappbutton.h" // we include the "tqmoc" file so that the KDE build system knows to create it #include "nonkdeappbutton.moc" // this is one of the two constructors. gets called when creating a new button // e.g. via the "non-TDE Application" dialog, not one that was saved and then // restored. NonKDEAppButton::NonKDEAppButton(const TQString& name, const TQString& description, const TQString& filePath, const TQString& icon, const TQString &cmdLine, bool inTerm, TQWidget* parent) : PanelButton(parent, "NonKDEAppButton") // call our superclass's constructor { // call the initialization method initialize(name, description, filePath, icon, cmdLine, inTerm); // and connect the clicked() signal (emitted when the button is activated) // to the slotExec() slot // we do this here instead of in initialize(...) since initialize(...) may // get called later, e.g after reconfiguring it connect(this, TQT_SIGNAL(clicked()), TQT_SLOT(slotExec())); } // this constructor is used when restoring a button, usually at startup NonKDEAppButton::NonKDEAppButton( const KConfigGroup& config, TQWidget* parent ) : PanelButton(parent, "NonKDEAppButton") // call our superclass's constructor { // call the initialization method, this time with values from a config file initialize(config.readEntry("Name"), config.readEntry("Description"), config.readPathEntry("Path"), config.readEntry("Icon"), config.readPathEntry("CommandLine"), config.readBoolEntry("RunInTerminal")); // see comment on connect in above constructor connect(this, TQT_SIGNAL(clicked()), TQT_SLOT(slotExec())); } void NonKDEAppButton::initialize(const TQString& name, const TQString& description, const TQString& filePath, const TQString& icon, const TQString &cmdLine, bool inTerm ) { // and now we actually set up most of the member variables with the // values passed in here. by doing this all in an initialize() method // we avoid duplicating this code all over the place nameStr = name; descStr = description; pathStr = filePath; iconStr = icon; cmdStr = cmdLine; term = inTerm; // now we set the buttons tooltip, title and icon using the appropriate // set*() methods from the PanelButton class from which we subclass // assign the name or the description to a TQString called tooltip TQString tooltip = description.isEmpty() ? nameStr : descStr; if (tooltip.isEmpty()) { // we had nothing, so let's try the path tooltip = pathStr; // and add the command if we have one. if (!cmdStr.isEmpty()) { tooltip += " " + cmdStr; } // set the title to the pathStr setTitle(pathStr); } else { // since we have a name or a description (assigned by the user) let's // use that as the title setTitle(nameStr.isEmpty() ? descStr : nameStr); } // set the tooltip TQToolTip::add(this, tooltip); // set the icon setIcon(iconStr); } void NonKDEAppButton::saveConfig( KConfigGroup& config ) const { // this is called whenever we change something // the config object sent in will already be set to the // right group and file, so we can just start writing config.writeEntry("Name", nameStr); config.writeEntry("Description", descStr); config.writeEntry("RunInTerminal", term); config.writePathEntry("Path", pathStr); config.writeEntry("Icon", iconStr); config.writePathEntry("CommandLine", cmdStr); } void NonKDEAppButton::dragEnterEvent(TQDragEnterEvent *ev) { // when something is dragged onto this button, we'll accept it // if we aren't dragged onto ourselves, and if it's a URL if ((ev->source() != this) && KURLDrag::canDecode(ev)) { ev->accept(rect()); } else { ev->ignore(rect()); } // and now let the PanelButton do as it wishes with it... PanelButton::dragEnterEvent(ev); } void NonKDEAppButton::dropEvent(TQDropEvent *ev) { // something has been droped on us! KURL::List fileList; TQString execStr; if (KURLDrag::decode(ev, fileList)) { // according to KURLDrag, we've successfully retrieved // one or more URLs! now we iterate over them one by // one .... for (KURL::List::ConstIterator it = fileList.begin(); it != fileList.end(); ++it) { const KURL &url(*it); if (KDesktopFile::isDesktopFile(url.path())) { // this URL is actually a .desktop file, so let's grab // the URL it actually points to ... KDesktopFile deskFile(url.path()); deskFile.setDesktopGroup(); // ... and add it to the exec string execStr += KProcess::quote(deskFile.readURL()) + " "; } else { // it's just a URL of some sort, add it directly to the exec execStr += KProcess::quote(url.path()) + " "; } } // and now run the command runCommand(execStr); } // and let PanelButton clean up PanelButton::dropEvent(ev); } void NonKDEAppButton::slotExec() { // the button was clicked, let's take some action runCommand(); } void NonKDEAppButton::runCommand(const TQString& execStr) { // run our command! this method is used both by the drag 'n drop // facilities as well as when the button is activated (usualy w/a click) // we'll use the "result" variable to record our success/failure bool result; // since kicker doesn't listen to or use the session manager, we have // to make sure that our environment is set up correctly. this is // accomlplished by doing: kapp->propagateSessionManager(); if (term) { // run in a terminal? ok! we find this in the config file in the // [misc] group (this will usually be in kdeglobal, actually, which // get merged into the application config automagically for us KConfig *config = KGlobal::config(); config->setGroup("misc"); TQString termStr = config->readPathEntry("Terminal", "konsole"); // and now we run the darn thing and store how we fared in result result = KRun::runCommand(termStr + " -e " + pathStr + " " + cmdStr + " " + execStr, pathStr, iconStr); } else { // just run it... result = KRun::runCommand(pathStr + " " + cmdStr + " " + execStr, pathStr, iconStr); } if (!result) { // something went wrong, so let's show an error msg to the user KMessageBox::error(this, i18n("Cannot execute non-TDE application."), i18n("Kicker Error")); return; } } void NonKDEAppButton::updateSettings(PanelExeDialog* dlg) { // we were reconfigured via the confiugration dialog // re-setup our member variables using initialize(...), // this time using values from the dlg initialize(dlg->title(), dlg->description(), dlg->command(), dlg->iconPath(), dlg->commandLine(), dlg->useTerminal()); // now delete the dialog so that it doesn't leak memory delete dlg; // and emit a signal that the container that houses us // listens for so it knows when to start the process to // save our configuration emit requestSave(); } void NonKDEAppButton::properties() { // the user has requested to configure this button // this method gets called by the ButtonContainer that houses the button // see ButtonContainer::eventFilter(TQObject *o, TQEvent *e), where the // context menu is created and dealt with. // so we create a new config dialog .... PanelExeDialog* dlg = new PanelExeDialog(nameStr, descStr, pathStr, iconStr, cmdStr, term, this); // ... connect the signal it emits when it has data for us to save // to our updateSettings slot (see above) ... connect(dlg, TQT_SIGNAL(updateSettings(PanelExeDialog*)), this, TQT_SLOT(updateSettings(PanelExeDialog*))); // ... and then show it to the user dlg->show(); }