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

Follow the rules for progress indicators.

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 the operation being performed above the progress bar:

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

For wording, follow the rules for progress text.

Examples:

  • 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

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.

Placement

If you need to use the progress bar among other controls, place it close to the control that starts the process.

23 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

Inline progress

Use inline progress to indicate that content is being updated. The user can continue working with the content, but should see that a background process is in progress.

Do not show a process name for an inline progress.

09 inline processes

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

Process complition

Hide the progress bar as soon as the process completes.

10 November 2025