]> git.argeo.org Git - lgpl/argeo-commons.git/blob - SecureWorkbenchWindowAdvisor.java
d8aaec4432d2d1eec1d57ae0107e245beb2b0997
[lgpl/argeo-commons.git] / SecureWorkbenchWindowAdvisor.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.security.ui.rcp;
17
18 import org.eclipse.swt.graphics.Point;
19 import org.eclipse.ui.application.ActionBarAdvisor;
20 import org.eclipse.ui.application.IActionBarConfigurer;
21 import org.eclipse.ui.application.IWorkbenchWindowConfigurer;
22 import org.eclipse.ui.application.WorkbenchWindowAdvisor;
23
24 public class SecureWorkbenchWindowAdvisor extends WorkbenchWindowAdvisor {
25 private final String username;
26
27 public SecureWorkbenchWindowAdvisor(IWorkbenchWindowConfigurer configurer,
28 String username) {
29 super(configurer);
30 this.username = username;
31 }
32
33 public ActionBarAdvisor createActionBarAdvisor(
34 IActionBarConfigurer configurer) {
35 return new SecureActionBarAdvisor(configurer, true);
36 }
37
38 public void preWindowOpen() {
39 IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
40 configurer.setInitialSize(new Point(1200, 900));
41 configurer.setShowCoolBar(true);
42 configurer.setShowMenuBar(true);
43 configurer.setShowStatusLine(true);
44 configurer.setShowProgressIndicator(true);
45
46 configurer.setShowPerspectiveBar(true);
47 String remoteUri = System
48 .getProperty(AbstractSecureApplication.NODE_REPO_URI);
49 if (remoteUri != null)
50 configurer
51 .setTitle("Argeo UI - " + username + " (" + remoteUri + ")"); //$NON-NLS-1$
52 else
53 configurer.setTitle("Argeo UI - " + username); //$NON-NLS-1$
54
55 }
56 }