fixes #805 and started to work on #835
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / user / AuthenticatedUserBar.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.user;
12
13 import java.util.Observable;
14 import java.util.Observer;
15
16 import org.eclipse.swt.SWT;
17 import org.eclipse.swt.layout.GridLayout;
18 import org.eclipse.swt.widgets.Composite;
19 import org.eclipse.swt.widgets.Control;
20 import org.eclipse.swt.widgets.Label;
21 import org.eclipse.ui.menus.WorkbenchWindowControlContribution;
22
23 import eu.etaxonomy.cdm.model.common.User;
24 import eu.etaxonomy.taxeditor.store.CdmStore;
25
26 /**
27 * Shows the currently logged in user in status bar
28 *
29 * @author n.hoffmann
30 * @created 01.07.2009
31 * @version 1.0
32 */
33 public class AuthenticatedUserBar extends WorkbenchWindowControlContribution implements Observer{
34
35 private Label label_authenticatedUser;
36
37 public AuthenticatedUserBar(){
38 CdmStore.getLoginManager().addObserver(this);
39 }
40
41 /* (non-Javadoc)
42 * @see org.eclipse.jface.action.ControlContribution#createControl(org.eclipse.swt.widgets.Composite)
43 */
44 @Override
45 protected Control createControl(Composite parent) {
46 final Composite composite = new Composite(parent, SWT.NONE);
47 final GridLayout layout = new GridLayout();
48 composite.setLayout(layout);
49
50 label_authenticatedUser = new Label(composite, SWT.NULL);
51
52 update(null, null);
53
54 return composite;
55 }
56
57 /* (non-Javadoc)
58 * @see java.util.Observer#update(java.util.Observable, java.lang.Object)
59 */
60 public void update(Observable o, Object arg) {
61 User authenticatedUser = CdmStore.getLoginManager().getAuthenticatedUser();
62 // TODO find a method to recompute width for parental toolbar item
63 String text = authenticatedUser == null ? "Not logged in " :
64 "Logged in as: " + authenticatedUser.getUsername() + " ";
65 label_authenticatedUser.setText(text);
66 }
67
68 /* (non-Javadoc)
69 * @see org.eclipse.jface.action.ContributionItem#dispose()
70 */
71 @Override
72 public void dispose() {
73 super.dispose();
74
75 CdmStore.getLoginManager().deleteObserver(this);
76 }
77
78
79
80 }