Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/17 10:30:21 (7 years ago)
Author:
pfleck
Message:

#2845

  • Added an explicit method for StartMarquee.
  • Renamed Add/RemoveOperationProgress methods.
  • Moved progress helpers from MainForm into static Progress methods named Show and Hide.
Location:
branches/EnhancedProgress/HeuristicLab.Clients.Hive/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/EnhancedProgress/HeuristicLab.Clients.Hive/3.3/HeuristicLab.Clients.Hive-3.3.csproj

    r14738 r15477  
    229229      <Private>False</Private>
    230230    </ProjectReference>
     231    <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">
     232      <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>
     233      <Name>HeuristicLab.MainForm.WindowsForms-3.3</Name>
     234      <Private>False</Private>
     235    </ProjectReference>
    231236    <ProjectReference Include="..\..\HeuristicLab.MainForm\3.3\HeuristicLab.MainForm-3.3.csproj">
    232237      <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project>
  • branches/EnhancedProgress/HeuristicLab.Clients.Hive/3.3/HiveClient.cs

    r15446 r15477  
    249249      try {
    250250        refreshableJob.IsProgressing = true;
    251         refreshableJob.Progress.Start("Connecting to server...");
     251        refreshableJob.Progress.StartMarquee("Connecting to server...");
    252252        IEnumerable<string> resourceNames = ToResourceNameList(refreshableJob.Job.ResourceNames);
    253253        var resourceIds = new List<Guid>();
     
    414414
    415415        // fetch all task objects to create the full tree of tree of HiveTask objects
    416         refreshableJob.Progress.Start("Downloading list of tasks...");
     416        refreshableJob.Progress.StartMarquee("Downloading list of tasks...");
    417417        allTasks = HiveServiceLocator.Instance.CallHiveService(s => s.GetLightweightJobTasksWithoutStateLog(hiveExperiment.Id));
    418418        totalJobCount = allTasks.Count();
  • branches/EnhancedProgress/HeuristicLab.Clients.Hive/3.3/Plugin.cs.frame

    r14195 r15477  
    3636  [PluginDependency("HeuristicLab.Hive", "3.3")] 
    3737  [PluginDependency("HeuristicLab.MainForm", "3.3")]
     38  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    3839  [PluginDependency("HeuristicLab.Optimization", "3.3")]
    3940  [PluginDependency("HeuristicLab.Persistence", "3.3")]
Note: See TracChangeset for help on using the changeset viewer.