InterpreterManagerShell::InterpreterManagerShell()
   : mInteractiveEnabled(true)
{
   setType(PlugInManagerServices::InterpreterManagerType());
   executeOnStartup(true);
   destroyAfterExecute(false);
   setWizardSupported(false);
   setAbortSupported(false);
   setSubtype("");
   allowMultipleInstances(false);
}
Esempio n. 2
0
      OssimServices()
      {
         setName("OSSIM Services");
         destroyAfterExecute(false);
         executeOnStartup(true);
         setType("Service");
         setDescriptorId("{FE6F67B0-2DC1-48d1-85EC-18DC62BE9980}");
         setProductionStatus(APP_IS_PRODUCTION_RELEASE);
         setWizardSupported(false);

         ossimInit::instance()->initialize();
      }
Esempio n. 3
0
SkinsPlugIn::SkinsPlugIn() : mpDefaultAction(NULL), mpSkinsMenu(NULL)
{
   setDescriptorId("{3a01c75e-29c2-4ad6-a3d4-5794ad9b6ee0}");
   setName("Skins");
   setDescription("Plug-in to manage skins.");
   setVersion(SKINS_VERSION_NUMBER);
   setProductionStatus(SKINS_IS_PRODUCTION_RELEASE);
   setCreator("Trevor R.H. Clarke <*****@*****.**>");
   setCopyright(SKINS_COPYRIGHT);
   setType("Manager");
   setSubtype("Skins");
   allowMultipleInstances(false);
   executeOnStartup(true);
   destroyAfterExecute(false);
   setAbortSupported(false);
   setWizardSupported(false);
}
SpectralLibraryManager::SpectralLibraryManager() :
    mpProgress(NULL),
    mpEditSpectralLibraryAction(NULL)
{
    ExecutableShell::setName(SpectralLibraryMatch::getNameLibraryManagerPlugIn());
    setType("Manager");
    setSubtype("SpectralLibrary");
    setVersion(SPECTRAL_VERSION_NUMBER);
    setCreator("Ball Aerospace & Technologies Corp.");
    setCopyright(SPECTRAL_COPYRIGHT);
    setShortDescription("Manages a spectral library.");
    setDescription("Controls populating and editing a spectral library for use in matching in-scene spectra.");
    setDescriptorId("{72116B2A-0A82-46b6-B0D0-CE168C73CA7E}");
    allowMultipleInstances(false);
    executeOnStartup(true);
    destroyAfterExecute(false);
    setWizardSupported(false);
    setProductionStatus(SPECTRAL_IS_PRODUCTION_RELEASE);
}
Esempio n. 5
0
SampleGeoref::SampleGeoref() :
   mXSize(10),
   mYSize(5),
   mXScale(1.0),
   mYScale(1.0),
   mExtrapolate(false),
   mpRaster(NULL),
   mpGui(NULL)
{
   setName("SampleGeoref");
   setCreator("Opticks Community");
   setVersion("Sample");
   setCopyright("Copyright (C) 2008, Ball Aerospace & Technologies Corp.");
   setDescription("Simple Georeference plugin");
   setProductionStatus(false);
   setDescriptorId("{57B86486-3B3B-465a-B74F-53A17290D982}");
   allowMultipleInstances(true);
   executeOnStartup(false);
   destroyAfterExecute(false);
}
Esempio n. 6
0
#include <iostream>

static void customMessageHandler(QtMsgType type, const char *message)
{
    switch (type) {
        case QtDebugMsg:
            std::cout << "Debug: " << message << std::endl;
            break;
        case QtWarningMsg:
            std::cout << "Warning: " << message << std::endl;
            break;
        case QtCriticalMsg:
            std::cout << "Critical: " << message << std::endl;
            break;
        case QtFatalMsg:
            std::cout << "Fatal: " << message << std::endl;
            std::abort();
            break;
    }
}

static bool executeOnStartup()
{
    qInstallMsgHandler(customMessageHandler);
    return true;
}

static bool s_dummy = executeOnStartup();

QTEST_CASCADES_MAIN(FilterProxyDataModelTest)