Examples of DlgAbs


Examples of org.geoforge.guillc.dialog.DlgAbs

    @Override
   public void preferencesAppliHandler()
   {
      try
      {
         DlgAbs dlg = new GfrDlgTabsPrefsSpcWork();

         if (!dlg.init())
         {
            String str = "! dlg.init()";
            GfrAcrSpcAppPrtWrkOgcEclAbs._LOGGER_.severe(str);
            throw new Exception(str);
         }

         dlg.setVisible(true);
      }
      catch (Exception exc)
      {
         exc.printStackTrace();
         String str = exc.getMessage();
View Full Code Here

Examples of org.geoforge.guillc.dialog.DlgAbs

    @Override
    public void preferencesAppliHandler()
    {
       try
       {
           DlgAbs dlg = new GfrDlgTabsPrefsPrsSel();

           if (! dlg.init())
           {
               String str = "! dlg.init()";
               GfrAcrSpcAppPrsPrjSelAbs._LOGGER_.severe(str);
               throw new Exception(str);
           }

           dlg.setVisible(true);
       }
      
       catch(Exception exc)
       {
          exc.printStackTrace();
View Full Code Here

Examples of org.geoforge.guillc.dialog.DlgAbs

    @Override
   public void preferencesAppliHandler()
   {
      try
      {
         DlgAbs dlg = new GfrDlgTabsPrefsPrsMan();

         if (!dlg.init())
         {
            String str = "! dlg.init()";
            throw new Exception(str);
         }

         dlg.setVisible(true);
      }
      catch (Exception exc)
      {
         exc.printStackTrace();
         String str = exc.getMessage();
View Full Code Here

Examples of org.geoforge.guillc.dialog.DlgAbs

         // not used

         if (strValueKindObject.compareTo(
                 GfrEnuValuesKindObjectOgc.VALUE_LLO_WMS_LYR_LEAF.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjLyrLeaf(
                    frmOwner, strId);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }

         if (strValueKindObject.compareTo(
                 GfrEnuValuesKindObjectOgc.VALUE_LLO_WMS_LYR_FOLDER.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspInfoWwdEarthOgcLyrWmsFolder(
                    frmOwner, strId);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }

      }

      // end settings llo

      // beg settings top
      if (evt.getSource() instanceof GfrMimTrsAlrSetTop)
      {
         GfrMimTrsAlrSetTop mim = (GfrMimTrsAlrSetTop) evt.getSource();
         JFrame frmOwner = GfrFrmAbs.s_getFrameOwnerTrickForActionController(mim);

         String strValueKindObject = mim.getPropertyImmutable(
                 GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_OBJECT.name());

         String strValueKindTargetWindow = mim.getPropertyImmutable(
                 GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_TARGET_WINDOW.name());

         //--
         if (strValueKindObject == null || strValueKindObject.length() < 1)
            return false;
         if (strValueKindTargetWindow == null || strValueKindTargetWindow.length() < 1)
            return false;
         //--


         if (strValueKindObject.compareTo(
                 GfrEnuValuesKindObjectTloSpcPrjOgc.VALUE_TLO_WMS.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.VIEWER_TOP_LEGENDS_OGC.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspInfoWwdEarthOgcWmss(
                       frmOwner);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }

      }
      // end settings top

      // beg settings tlo
      if (evt.getSource() instanceof GfrMimTrsAlrIdSetTlo)
      {
         GfrMimTrsAlrIdAbs mim = (GfrMimTrsAlrIdAbs) evt.getSource();
         JFrame frmOwner = GfrFrmAbs.s_getFrameOwnerTrickForActionController(mim);

         String strId = mim.getId();

         String strValueKindObject = mim.getPropertyImmutable(
                 GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_OBJECT.name());

         String strValueKindTargetWindow = mim.getPropertyImmutable(
                 GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_TARGET_WINDOW.name());

         //--
         if (strValueKindObject == null || strValueKindObject.length() < 1)
            return false;

         if (strValueKindTargetWindow == null || strValueKindTargetWindow.length() < 1)
            return false;

         if (strValueKindObject.compareTo(
                 GfrEnuValuesKindObjectTloSpcPrjOgc.VALUE_TLO_WMS.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                    || strValueKindTargetWindow.compareTo(
                    GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspInfoWwdEarthOgcWms(
                       frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }

      }
View Full Code Here

Examples of org.geoforge.guillc.dialog.DlgAbs

                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthSct(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_ARE.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthAre(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PTH.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthPth(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PLC.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthPlc(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PNT.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthPnt(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }


         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_SPN.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthSpn(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }


         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_SEG_WISE_YES.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_SELECT.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdObjEarthSegWiseYes(
                     frmOwner, strId);

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }
      }

      if (evt.getSource() instanceof GfrMimTrsAlrSetTop)
      {
         GfrMimTrsAlrSetTop mim = (GfrMimTrsAlrSetTop) evt.getSource();

         JFrame frmOwner = GfrFrmAbs.s_getFrameOwnerTrickForActionController(mim);


         String strValueKindObject = mim.getPropertyImmutable(
               GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_OBJECT.name());



         //-- unused for now coz only wwd earth views , even in run (no jfc in run)
         String strValueKindTargetWindow = mim.getPropertyImmutable(
               GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_TARGET_WINDOW.name());


         //--
         if (strValueKindObject == null || strValueKindObject.length() < 1)
            return false;


         // ---
         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_SEG_WISE_YES.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthSegsWiseYes(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);

            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_SPN.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthSpns(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);

            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PTH.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthPths(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);

            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PLC.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthPlcs(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_PNT.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthPnts(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_ARE.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthAres(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectTloSpcPrjOgcEcl.VALUE_TLO_ECL_SCT.name()) == 0)
         {
            DlgAbs dlg = new GfrDlgTabsSettingsDspActionWwdTopEarthScts(
                  frmOwner);

            if (!dlg.init())
            {
               String str = "! dlg.init()";
               ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
               throw new Exception(str);
            }

            dlg.setVisible(true);
            return true;
         }
      }



      if (evt.getSource() instanceof GfrMimTrsAlrIdSetLloVar)
      {

         GfrMimTrsAlrIdSetLloVar mim = (GfrMimTrsAlrIdSetLloVar) evt.getSource();

         JFrame frmOwner = GfrFrmAbs.s_getFrameOwnerTrickForActionController(mim);
         String strId = mim.getId();

         String strValueKindObject = mim.getPropertyImmutable(
               GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_OBJECT.name());



         //-- unused for now coz only wwd earth views =>
         String strValueKindTargetWindow = mim.getPropertyImmutable(
               GfrEnuApplicationPropertiesImmutableKeys.KEY_KIND_TARGET_WINDOW.name());


         //--
         if (strValueKindObject == null || strValueKindObject.length() < 1)
            return false;

         //--




         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_SPN.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclSpn.getInstance().getPathAbsoluteImageFile(strId),
                     "Pointset image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }


         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_SEG_WISE_YES.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclSegWiseYes.getInstance().getPathAbsoluteImageFile(strId),
                     "Pointset image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_SCT.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclSct.getInstance().getPathAbsoluteImageFile(strId),
                     "Sector image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }


         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_PLC.name()) == 0)
         {


            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclPlc.getInstance().getPathAbsoluteImageFile(strId),
                     "Placemark image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_PNT.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclPnt.getInstance().getPathAbsoluteImageFile(strId),
                     "Point image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);
               return true;
            }
         }

         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_ARE.name()) == 0)
         {

            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclAre.getInstance().getPathAbsoluteImageFile(strId),
                     "Area image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }


         if (strValueKindObject.compareTo(
               GfrEnuValuesKindObjectLloVarSpcPrjOgcEcl.VALUE_LLO_IMAGE_ECL_PTH.name()) == 0)
         {
            if (strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_MANAGE.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.PERSPECTIVE_RUN.name()) == 0
                  || strValueKindTargetWindow.compareTo(
                  GfrEnuValuesKindTargetWindow.VIEWER_TOP_WORLDWIND.name()) == 0)
            {
               DlgAbs dlg = new GfrDlgTabsSettingsDspActionAllObjImg(
                     frmOwner,
                     GfrWrpBasSynObjNameTloEclPth.getInstance().getPathAbsoluteImageFile(strId),
                     "Path image");

               if (!dlg.init())
               {
                  String str = "! dlg.init()";
                  ActPrfPrjSettingsOgcEclAbs._LOGGER_.severe(str);
                  throw new Exception(str);
               }

               dlg.setVisible(true);

               return true;
            }
         }
View Full Code Here

Examples of org.geoforge.guillc.dialog.DlgAbs

    public void optionIconLogoUserHandler()
   {

       try
       {
           DlgAbs dlg = new GfrDlgCmdCancelOptionIconPdf();
          
           if (! dlg.init())
           {
               String str = "! dlg.init()";
                GfrAcrSpcAppMainAbs._LOGGER_.severe(str);
                GfrOptionPaneAbs.s_showDialogError(null, str);
                return;
           }
          
           dlg.setVisible(true);
       }
      
       catch(Exception exc)
       {
          exc.printStackTrace();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.