IntelliJ Platform Plugin SDK Help

Progress Bar

A progress bar informs users about the progress of a lengthy operation.

01 progress bar

When to use

Long-running background operations

Use a progress bar to indicate long-running operations that don’t block the user interface but require visual tracking.

14 in status bar

Background content update

When it is important to show that content is being updated, use an inline progress bar for background updates. The user can continue working with the content while a background process is performed. Do not show a process name for an inline progress.

09 inline processes

Downloading and installing

Display a progress bar near the button while the action is being performed.

17 downloading

How to use

Types

Use a determinate progress bar if the process duration is known. Otherwise, use indeterminate progress bar:

02 determinate and indeterminate

If an indeterminate process reaches a point where its duration can be determined, switch to a determinate progress bar:

04 determinate to indeterminate

Process name and details

A progress bar can have a process name and process details.

Process name

Show the name of an operation being performed above the progress bar. Use the continuous form of the verb that describes the operation. Add an ellipsis at the end to indicate that the process is ongoing.

05 process name

If the vertical space is limited, place the process name with a colon on the left:

07 process name on the left

Process details

Show information about the current stage of an operation to make long-running tasks more predictable and manageable.

Show details below the progress bar on a single line. The length of details is limited by the width of the progress bar.

05 process details

Details example:

  • The current step: “Uploading file 3 of 10”

  • The name of a file, module, or library: “Fetching guava-31.1.jar”

  • Remaining time or percentage completed.

  • Round the remaining time to one of the following values: 1, 2, 3, 5, 10, 15, 20, or 30 seconds (or minutes). For example, if 7 minutes and 50 seconds remain, show “About 10 minutes left.” If less than 5 seconds remain, show “About 5 seconds left.”

  • If the user can control the process (for example, stop it after a certain time), update the timer dynamically every second.

Process controls

Place process controls on the right next to the progress bar. On hover over the icon, show the name of the control under the progress bar instead of process details.

17 stop button

Cancel or Stop button

Add a Cancel button if the process can be safely interrupted. If interrupting the process does not restore the system to its previous state, name the button Stop.

17 cancel button

Pause button

If the process takes a long time and can prevent the user from performing tasks, provide an option to pause a process.

Pause button

Replace process details with the "Pause" comment on hover over the Pause icon.

Process on pause

If a user pauses the process, show "Paused" under the progress bar. Replace the Pause icon with Resume.

Resume button

Show "Resume" under the progress bar and when hovered over the Resume button.

Process status

If a process consists of substeps that can fail but do not terminate the process, then use green and red colors to show the intermediate status. For example, show the status of the running tests:

15 process status

Placement in dialog or popup

Use a process name as a dialog or popup header, capitalize the title and remove the ellipsis. Process details appear above the progress bar. For a single progress bar, use a button to cancel or pause the process instead of an icon:

13 in dialog

For several processes in a group, add a common header and use icons for process controls:

16 process control

Process completion

Hide the progress bar as soon as the process completes.

14 July 2026