SWT

SWT: Add shortcut key for menuitem

Here's how to make the menu item link to the Ctrl+o
Which SWT.MOD1 = SWT.CTRL

MenuItem mntm_open = new MenuItem(menu_file, SWT.NONE);
mntm_open.setText("&Open...\tCtrl+O");
mntm_open.setAccelerator(SWT.MOD1  + 'O');

Theme by Danetsoft and Danang Probo Sayekti inspired by Maksimer