Example #1
0
SunPlugin::SunPlugin()
{
    setVisible( false );

    setVersion( "1.0" );
    setCopyrightYear( 2011 );
    addAuthor( "Torsten Rahn", "*****@*****.**" );
    addAuthor( "Bernhard Beschow", "*****@*****.**");
    addAuthor( "Harshit Jain", "*****@*****.**" );
}
Example #2
0
OpenCachingPlugin::OpenCachingPlugin()
    : m_isInitialized( false ),
      m_configDialog( 0 )
{
    setNameId( "opencaching" );
    setVersion( "1.0" );
    setCopyrightYear( 2011 );
    addAuthor( "Daniel Marth", "*****@*****.**" );
    setDataText( tr( "Cache positions by opencaching.de." ) );

    setEnabled( true );  // Plugin is enabled by default
    setVisible( false ); // Plugin is invisible by default
    connect( this, SIGNAL(settingsChanged(QString)),
             this, SLOT(updateSettings()) );
}