You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.6 KiB
82 lines
2.6 KiB
echo "Creating $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.cpp...";
|
|
cat << EOF > $LOCATION_ROOT/$APP_NAME_LC/plugin_${APP_NAME_LC}.cpp
|
|
#include "plugin_${APP_NAME_LC}.h"
|
|
|
|
#include <tdehtml_part.h>
|
|
#include <tdeaction.h>
|
|
#include <kinstance.h>
|
|
#include <tdemessagebox.h>
|
|
#include <tdelocale.h>
|
|
#include <kgenericfactory.h>
|
|
|
|
typedef KGenericFactory<Plugin${APP_NAME}> ${APP_NAME}Factory;
|
|
K_EXPORT_COMPONENT_FACTORY( lib${APP_NAME_LC}plugin,
|
|
${APP_NAME}Factory( "${APP_NAME_LC}" ) );
|
|
|
|
Plugin${APP_NAME}::Plugin${APP_NAME}( TQObject* parent, const char* name,
|
|
const TQStringList & /*args*/ )
|
|
: Plugin( parent, name )
|
|
{
|
|
// Instantiate all of your actions here. These will appear in
|
|
// Konqueror's menu and toolbars.
|
|
(void) new TDEAction( i18n("&Plugin Action"), "${APP_NAME_LC}", 0,
|
|
this, TQT_SLOT(slotAction()),
|
|
actionCollection(), "plugin_action" );
|
|
}
|
|
|
|
Plugin${APP_NAME}::~Plugin${APP_NAME}()
|
|
{
|
|
}
|
|
|
|
void Plugin${APP_NAME}::slotAction()
|
|
{
|
|
// This plugin assumes TDEHTMLPart. If your plugin can handle more
|
|
// than this or a different Part than this, simply delete or
|
|
// change the following block.
|
|
if ( !parent()->inherits("TDEHTMLPart") )
|
|
{
|
|
TQString title( i18n( "Cannot Translate Source" ) );
|
|
TQString text( i18n( "You cannot translate anything except web pages "
|
|
"with this plugin." ) );
|
|
|
|
KMessageBox::sorry( 0, text, title );
|
|
return;
|
|
}
|
|
|
|
// Get a handle on our parent so we may get the necessary data for
|
|
// processing
|
|
TDEHTMLPart *part = dynamic_cast<TDEHTMLPart *>(parent());
|
|
|
|
// This plugin only uses the URL. You may use whatever data you
|
|
// need.
|
|
KURL url( part->url() );
|
|
|
|
// This is a standard check to make sure we are dealing with a
|
|
// valid URL
|
|
if ( !url.isValid() )
|
|
{
|
|
TQString title( i18n( "Malformed URL" ) );
|
|
TQString text( i18n( "The URL you entered is not valid, please "
|
|
"correct it and try again." ) );
|
|
|
|
KMessageBox::sorry( 0, text, title );
|
|
return;
|
|
}
|
|
|
|
// The following block is very plugin specific. In this example, we
|
|
// translate the current page with AltaVista's BabelFish. You will
|
|
// definitely want to change this.
|
|
// BEGIN
|
|
KURL work( "http://babel.altavista.com/translate.dyn" );
|
|
|
|
TQString query( "urltext=" );
|
|
query += KURL::encode_string( url.url() );
|
|
work.setQuery( query );
|
|
// END
|
|
|
|
// Finally, execute the request
|
|
part->openURL( work );
|
|
}
|
|
|
|
#include <plugin_${APP_NAME_LC}.moc>
|