Skip to content
Snippets Groups Projects
  1. Sep 12, 2009
    • Jannis Pohlmann's avatar
      Add the target directory display name to the titles of some operations. · 9a264586
      Jannis Pohlmann authored
      All operations that have only one target directory now have its display
      name in the title of the corresponding ThunarProgressView, e.g.
      'Copying files to "Test"...'.
      
      This is accompanied by a new function called
      thunar_file_cached_display_name() which takes a GFile and tries to
      determine the display name of its cached ThunarFile, and otherwise falls
      back to g_filename_display_name().
      9a264586
    • Jannis Pohlmann's avatar
    • Jannis Pohlmann's avatar
      Use 0.01 instead of 0.05 percent for smoother progress bars. · 55e0cb2a
      Jannis Pohlmann authored
      It still seems to reduce the CPU usage by about the same amount than
      0.05 percent did (5-9% instead of 50%).
      55e0cb2a
    • Jannis Pohlmann's avatar
      Reduce the 'percent' signal emission frequency in ThunarTransferJob. · 7d8ee428
      Jannis Pohlmann authored
      GIO generates a lot of calls to the progress callback. If we simply
      forward those to the GUI in the form of 'percent' signals, we cause the
      CPU usage of the X server to go up dramatically (up to around 50%).
      
      A better solution is to only emit the 'percent' signal from time to
      time but frequently enough for progress bars to advance smoothly. This
      is what this commit changes. From now on 'percent' is only emitted when
      the percentage has increased by more than 0.05 percent since the
      previous emission.
      7d8ee428
    • Jannis Pohlmann's avatar
      Initial import of the shared progress dialog. · 1fca6edc
      Jannis Pohlmann authored
      This introduces a new view called ThunarProgressView which essentially
      replaces the old ThunarProgressDialog. The new ThunarProgressDialog is a
      container GtkWindow (I wonder about renaming it to ThunarProgressWindow)
      for all the ThunarProgressViews associated with running file operations.
      
      ThunarProgressDialog also creates a status icon that can be used to
      toggle its visibility.
      
      Things left on the TODO list:
      - Check if we can lower the CPU usage of the dialog (X goes up to
        around 50% on my machine with the dialog visible), compare this to
        the situation before.
      - Double-check if the use of gtk_window_present() is correct here.
      - Either prepend (instead of append) new views or scroll down to them
        upon their creation.
      1fca6edc
  2. Sep 10, 2009
  3. Sep 08, 2009
  4. Sep 05, 2009
  5. Sep 04, 2009
    • Jannis Pohlmann's avatar
    • Jannis Pohlmann's avatar
      Don't show the root label in the pathbar. Center the icon (bug #5291). · 2b6761af
      Jannis Pohlmann authored
      Centering the icon is done by hiding the alignment in which the label
      would otherwise be presented. The alignment wastes space even if the
      label is empty or hidden.
      2b6761af
    • Jannis Pohlmann's avatar
      Reduce D-Bus noise by grouping thumbnail requests in 100ms time slots. · 4911ff1e
      Jannis Pohlmann authored
      Just like the rest of ThunarThumbnailer, this code is somewhat scary.
      ThunarThumbnailer now queues individual thumbnail request in a wait
      queue which is triggered at most every 100ms. All requests made in this
      time slot are grouped and sent out as *one* request.
      
      For each time slot, the local optimization is 3+n D-Bus messages (1
      request, 1 started signal, 1 finished signal and n ready signals) as
      compared to 4*n messages we had before (1 request and 1 started,
      finished and ready signal for each individual file).
      
      Of course this calculation is naive. In theory our users scroll up and
      down like crazy, sometimes slower, sometimes faster, everyeone using
      different Thunar window and icon sizes.
      
      As a result the grouped requests are sometimes very small and sometimes
      very large. It's worth noting that this optimization performs better,
      the more files are visible in the window and the faster a user scrolls
      (as this means that more files are made visible within 100ms and thus,
      the size of group requests grows). So I guess we're good.
      4911ff1e
  6. Sep 03, 2009
  7. Sep 02, 2009
  8. Sep 01, 2009
  9. Aug 30, 2009
  10. Aug 29, 2009
  11. Aug 27, 2009
  12. Aug 24, 2009
  13. Aug 23, 2009
Loading