1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.gui.main;
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.util.*;
import java.util.List;
import javax.swing.*;
import net.java.sip.communicator.impl.gui.*;
import net.java.sip.communicator.impl.gui.customcontrols.*;
import net.java.sip.communicator.impl.gui.event.*;
import net.java.sip.communicator.impl.gui.i18n.*;
import net.java.sip.communicator.impl.gui.main.call.*;
import net.java.sip.communicator.impl.gui.main.chat.*;
import net.java.sip.communicator.impl.gui.main.chat.conference.*;
import net.java.sip.communicator.impl.gui.main.chat.history.*;
import net.java.sip.communicator.impl.gui.main.chatroomslist.*;
import net.java.sip.communicator.impl.gui.main.contactlist.*;
import net.java.sip.communicator.impl.gui.main.login.*;
import net.java.sip.communicator.impl.gui.main.menus.*;
import net.java.sip.communicator.impl.gui.main.presence.*;
import net.java.sip.communicator.impl.gui.utils.*;
import net.java.sip.communicator.service.configuration.*;
import net.java.sip.communicator.service.contacteventhandler.*;
import net.java.sip.communicator.service.contactlist.*;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.service.gui.Container;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.service.protocol.event.*;
import net.java.sip.communicator.util.*;
import org.osgi.framework.*;
/**
* The main application window. This class is the core of this ui
* implementation. It stores all available protocol providers and their
* operation sets, as well as all registered accounts, the
* <tt>MetaContactListService</tt> and all sent messages that aren't
* delivered yet.
*
* @author Yana Stamcheva
*/
public class MainFrame
extends SIPCommFrame
implements PluginComponentListener
{
private Logger logger = Logger.getLogger(MainFrame.class.getName());
private JPanel contactListPanel = new JPanel(new BorderLayout());
private JPanel mainPanel = new JPanel(new BorderLayout(0, 5));
private MainMenu menu;
private CallManager callManager;
private StatusPanel statusPanel;
private MainTabbedPane tabbedPane;
private JComponent quickMenu;
private LinkedHashMap protocolProviders = new LinkedHashMap();
private MetaContactListService contactList;
private LoginManager loginManager;
private ChatWindowManager chatWindowManager;
private MultiUserChatManager multiUserChatManager;
private HistoryWindowManager historyWindowManager
= new HistoryWindowManager();
private Hashtable<ProtocolProviderService, ContactEventHandler>
providerContactHandlers
= new Hashtable<ProtocolProviderService, ContactEventHandler>();
/**
* Creates an instance of <tt>MainFrame</tt>.
*/
public MainFrame()
{
this.chatWindowManager = new ChatWindowManager(this);
callManager = new CallManager(this);
multiUserChatManager = new MultiUserChatManager(this);
tabbedPane = new MainTabbedPane(this);
String isToolbarExtendedString
= ApplicationProperties.getProperty(
"isToolBarExteneded");
boolean isToolBarExtended
= new Boolean(isToolbarExtendedString).booleanValue();
if (isToolBarExtended)
quickMenu = new ExtendedQuickMenu(this);
else
quickMenu = new QuickMenu(this);
statusPanel = new StatusPanel(this);
menu = new MainMenu(this);
this.addWindowListener(new MainFrameWindowAdapter());
this.initBounds();
this.initTitleFont();
String applicationName
= ApplicationProperties.getProperty(
"applicationName");
this.setTitle(applicationName);
this.init();
this.initPluginComponents();
}
/**
* Initiates the content of this frame.
*/
private void init()
{
this.addKeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_F2, 0),
new RenameAction());
this.addKeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT,
KeyEvent.ALT_DOWN_MASK), new ForwordTabAction());
this.addKeyBinding(KeyStroke.getKeyStroke(KeyEvent.VK_LEFT,
KeyEvent.ALT_DOWN_MASK), new BackwordTabAction());
this.contactListPanel.add(tabbedPane, BorderLayout.CENTER);
this.contactListPanel.add(callManager, BorderLayout.SOUTH);
mainPanel.setBorder(BorderFactory.createEmptyBorder(5, 0, 0, 0));
this.mainPanel.add(contactListPanel, BorderLayout.CENTER);
this.mainPanel.add(statusPanel, BorderLayout.SOUTH);
JPanel menusPanel = new JPanel(new BorderLayout(0, 5));
this.setJMenuBar(menu);
menusPanel.add(quickMenu, BorderLayout.SOUTH);
JPanel northPanel = new JPanel(new BorderLayout());
northPanel.add(new LogoBar(), BorderLayout.NORTH);
northPanel.add(menusPanel, BorderLayout.CENTER);
this.getContentPane().add(northPanel, BorderLayout.NORTH);
this.getContentPane().add(mainPanel, BorderLayout.CENTER);
}
/**
* Sets frame size and position.
*/
private void initBounds()
{
int width = SizeProperties.getSize("mainWindowWidth");
int height = SizeProperties.getSize("mainWindowHeight");
this.setSize(width, height);
this.setLocation(Toolkit.getDefaultToolkit().getScreenSize().width
- this.getWidth(), 50);
}
/**
* Initialize main window font.
*/
private void initTitleFont()
{
JComponent layeredPane = this.getLayeredPane();
String fontName
= ApplicationProperties.getProperty(
"fontName");
String titleFontSize
= ApplicationProperties.getProperty(
"titleFontSize");
Font font = new Font( fontName,
Font.BOLD,
new Integer(titleFontSize).intValue());
for (int i = 0; i < layeredPane.getComponentCount(); i++)
{
layeredPane.getComponent(i).setFont(font);
}
}
/**
* Returns the <tt>MetaContactListService</tt>.
*
* @return <tt>MetaContactListService</tt> The current meta contact list.
*/
public MetaContactListService getContactList()
{
return this.contactList;
}
/**
* Initializes the contact list panel.
*
* @param contactList The <tt>MetaContactListService</tt> containing
* the contact list data.
*/
public void setContactList(MetaContactListService contactList)
{
this.contactList = contactList;
ContactListPanel clistPanel = this.tabbedPane.getContactListPanel();
clistPanel.initList(contactList);
CListKeySearchListener keyListener
= new CListKeySearchListener(clistPanel.getContactList());
//add a key listener to the tabbed pane, when the contactlist is
//initialized
this.tabbedPane.addKeyListener(keyListener);
clistPanel.addKeyListener(keyListener);
clistPanel.getContactList().addKeyListener(keyListener);
clistPanel.getContactList().addListSelectionListener(callManager);
}
/**
* Adds all protocol supported operation sets.
*
* @param protocolProvider The protocol provider.
*/
public void addProtocolSupportedOperationSets(
ProtocolProviderService protocolProvider)
{
Map supportedOperationSets
= protocolProvider.getSupportedOperationSets();
String ppOpSetClassName = OperationSetPersistentPresence
.class.getName();
String pOpSetClassName = OperationSetPresence.class.getName();
// Obtain the presence operation set.
if (supportedOperationSets.containsKey(ppOpSetClassName)
|| supportedOperationSets.containsKey(pOpSetClassName)) {
OperationSetPresence presence = (OperationSetPresence)
supportedOperationSets.get(ppOpSetClassName);
if(presence == null) {
presence = (OperationSetPresence)
supportedOperationSets.get(pOpSetClassName);
}
presence.addProviderPresenceStatusListener(
new GUIProviderPresenceStatusListener());
presence.addContactPresenceStatusListener(
new GUIContactPresenceStatusListener());
}
// Obtain the basic instant messaging operation set.
String imOpSetClassName = OperationSetBasicInstantMessaging
.class.getName();
if (supportedOperationSets.containsKey(imOpSetClassName)) {
OperationSetBasicInstantMessaging im
= (OperationSetBasicInstantMessaging)
supportedOperationSets.get(imOpSetClassName);
//Add to all instant messaging operation sets the Message
//listener implemented in the ContactListPanel, which handles
//all received messages.
im.addMessageListener(getContactListPanel());
}
// Obtain the typing notifications operation set.
String tnOpSetClassName = OperationSetTypingNotifications
.class.getName();
if (supportedOperationSets.containsKey(tnOpSetClassName)) {
OperationSetTypingNotifications tn
= (OperationSetTypingNotifications)
supportedOperationSets.get(tnOpSetClassName);
//Add to all typing notification operation sets the Message
//listener implemented in the ContactListPanel, which handles
//all received messages.
tn.addTypingNotificationsListener(this.getContactListPanel());
}
// Obtain the basic telephony operation set.
String telOpSetClassName = OperationSetBasicTelephony.class.getName();
if (supportedOperationSets.containsKey(telOpSetClassName)) {
OperationSetBasicTelephony telephony
= (OperationSetBasicTelephony)
supportedOperationSets.get(telOpSetClassName);
telephony.addCallListener(callManager);
this.getContactListPanel().getContactList()
.addListSelectionListener(callManager);
this.tabbedPane.addChangeListener(callManager);
}
// Obtain the multi user chat operation set.
String multiChatClassName = OperationSetMultiUserChat.class.getName();
if (supportedOperationSets.containsKey(multiChatClassName))
{
OperationSetMultiUserChat multiUserChat
= (OperationSetMultiUserChat)
supportedOperationSets.get(multiChatClassName);
multiUserChat.addInvitationListener(multiUserChatManager);
multiUserChat.addInvitationRejectionListener(multiUserChatManager);
multiUserChat.addPresenceListener(multiUserChatManager);
this.getChatRoomsListPanel()
.getChatRoomsList()
.addChatServer(protocolProvider, multiUserChat);
}
}
/**
* Returns a set of all protocol providers.
*
* @return a set of all protocol providers.
*/
public Iterator getProtocolProviders()
{
return ((LinkedHashMap)protocolProviders.clone()).keySet().iterator();
}
/**
* Returns the protocol provider associated to the account given
* by the account user identifier.
*
* @param accountName The account user identifier.
* @return The protocol provider associated to the given account.
*/
public ProtocolProviderService getProtocolProviderForAccount(
String accountName)
{
Iterator i = this.protocolProviders.keySet().iterator();
while(i.hasNext()) {
ProtocolProviderService pps
= (ProtocolProviderService)i.next();
if (pps.getAccountID().getUserID().equals(accountName)) {
return pps;
}
}
return null;
}
/**
* Adds a protocol provider.
* @param protocolProvider The protocol provider to add.
*/
public void addProtocolProvider(ProtocolProviderService protocolProvider)
{
logger.trace("Add the following protocol provider to the gui: "
+ protocolProvider.getAccountID().getAccountAddress());
this.protocolProviders.put(protocolProvider,
new Integer(initiateProviderIndex(protocolProvider)));
this.addProtocolSupportedOperationSets(protocolProvider);
this.addAccount(protocolProvider);
ContactEventHandler contactHandler
= this.getContactHandlerForProvider(protocolProvider);
if (contactHandler == null)
contactHandler = new DefaultContactEventHandler(this);
this.addProviderContactHandler(protocolProvider, contactHandler);
}
/**
* Returns the index of the given protocol provider.
* @param protocolProvider the protocol provider to search for
* @return the index of the given protocol provider
*/
public int getProviderIndex(ProtocolProviderService protocolProvider)
{
Object o = protocolProviders.get(protocolProvider);
if(o != null) {
return ((Integer)o).intValue();
}
return 0;
}
/**
* Adds an account to the application.
*
* @param protocolProvider The protocol provider of the account.
*/
public void addAccount(ProtocolProviderService protocolProvider)
{
if (!getStatusPanel().containsAccount(protocolProvider)) {
logger.trace("Add the following account to the status bar: "
+ protocolProvider.getAccountID().getAccountAddress());
this.getStatusPanel().addAccount(protocolProvider);
//request the focus in the contact list panel, which
//permits to search in the contact list
this.tabbedPane.getContactListPanel().getContactList()
.requestFocus();
}
if(!callManager.containsCallAccount(protocolProvider)
&& getTelephonyOpSet(protocolProvider) != null) {
callManager.addCallAccount(protocolProvider);
}
}
/**
* Adds an account to the application.
*
* @param protocolProvider The protocol provider of the account.
*/
public void removeProtocolProvider(ProtocolProviderService protocolProvider)
{
this.protocolProviders.remove(protocolProvider);
this.updateProvidersIndexes(protocolProvider);
if (getStatusPanel().containsAccount(protocolProvider))
{
this.getStatusPanel().removeAccount(protocolProvider);
}
if(callManager.containsCallAccount(protocolProvider))
{
callManager.removeCallAccount(protocolProvider);
}
// Remove all related chat rooms.
this.getChatRoomsListPanel().getChatRoomsList()
.removeChatServer(protocolProvider);
}
/**
* Activates an account. Here we start the connecting process.
*
* @param protocolProvider The protocol provider of this account.
*/
public void activateAccount(ProtocolProviderService protocolProvider)
{
this.getStatusPanel().startConnecting(protocolProvider);
}
/**
* Returns the account user id for the given protocol provider.
* @return The account user id for the given protocol provider.
*/
public String getAccount(ProtocolProviderService protocolProvider)
{
return protocolProvider.getAccountID().getUserID();
}
/**
* Returns the presence operation set for the given protocol provider.
*
* @param protocolProvider The protocol provider for which the
* presence operation set is searched.
* @return the presence operation set for the given protocol provider.
*/
public OperationSetPresence getProtocolPresenceOpSet(
ProtocolProviderService protocolProvider)
{
OperationSet opSet
= protocolProvider.getOperationSet(OperationSetPresence.class);
if(opSet != null && opSet instanceof OperationSetPresence)
return (OperationSetPresence) opSet;
return null;
}
/**
* Returns the Web Contact Info operation set for the given
* protocol provider.
*
* @param protocolProvider The protocol provider for which the TN
* is searched.
* @return OperationSetWebContactInfo The Web Contact Info operation
* set for the given protocol provider.
*/
public OperationSetWebContactInfo getWebContactInfoOpSet(
ProtocolProviderService protocolProvider)
{
OperationSet opSet
= protocolProvider.getOperationSet(OperationSetWebContactInfo.class);
if(opSet != null && opSet instanceof OperationSetWebContactInfo)
return (OperationSetWebContactInfo) opSet;
return null;
}
/**
* Returns the telephony operation set for the given protocol provider.
*
* @param protocolProvider The protocol provider for which the telephony
* operation set is about.
* @return OperationSetBasicTelephony The telephony operation
* set for the given protocol provider.
*/
public OperationSetBasicTelephony getTelephonyOpSet(
ProtocolProviderService protocolProvider)
{
OperationSet opSet
= protocolProvider.getOperationSet(OperationSetBasicTelephony.class);
if(opSet != null && opSet instanceof OperationSetBasicTelephony)
return (OperationSetBasicTelephony) opSet;
return null;
}
/**
* Returns the multi user chat operation set for the given protocol provider.
*
* @param protocolProvider The protocol provider for which the multi user
* chat operation set is about.
* @return OperationSetMultiUserChat The telephony operation
* set for the given protocol provider.
*/
public OperationSetMultiUserChat getMultiUserChatOpSet(
ProtocolProviderService protocolProvider)
{
OperationSet opSet
= protocolProvider.getOperationSet(OperationSetMultiUserChat.class);
if(opSet != null && opSet instanceof OperationSetMultiUserChat)
return (OperationSetMultiUserChat) opSet;
return null;
}
/**
* Returns the call manager.
* @return CallManager The call manager.
*/
public CallManager getCallManager()
{
return callManager;
}
/**
* Returns the status panel.
* @return StatusPanel The status panel.
*/
public StatusPanel getStatusPanel()
{
return statusPanel;
}
/**
* Listens for all contactPresenceStatusChanged events in order
* to refresh the contact list, when a status is changed.
*/
private class GUIContactPresenceStatusListener implements
ContactPresenceStatusListener
{
/**
* Indicates that a contact has changed its status.
*
* @param evt the presence event containing information about the
* contact status change
*/
public void contactPresenceStatusChanged(
ContactPresenceStatusChangeEvent evt)
{
ContactListPanel clistPanel = tabbedPane.getContactListPanel();
Contact sourceContact = evt.getSourceContact();
MetaContact metaContact = contactList
.findMetaContactByContact(sourceContact);
if (metaContact != null
&& (evt.getOldStatus() != evt.getNewStatus()))
{
// Update the status in the contact list.
clistPanel.getContactList().refreshContact(metaContact);
// Update the status in chat window.
if(chatWindowManager.isChatOpenedForContact(metaContact))
{
MetaContactChatPanel chatPanel
= chatWindowManager.getContactChat(metaContact);
chatPanel.updateContactStatus(
sourceContact, evt.getNewStatus());
}
}
}
}
/**
* Listens for all providerStatusChanged and providerStatusMessageChanged
* events in order to refresh the account status panel, when a status is
* changed.
*/
private class GUIProviderPresenceStatusListener implements
ProviderPresenceStatusListener
{
public void providerStatusChanged(ProviderPresenceStatusChangeEvent evt)
{
ProtocolProviderService pps = evt.getProvider();
getStatusPanel().updateStatus(pps, evt.getNewStatus());
if(callManager.containsCallAccount(pps))
{
callManager.updateCallAccountStatus(pps);
}
}
public void providerStatusMessageChanged(PropertyChangeEvent evt) {
}
}
/**
* Returns the list of all groups.
* @return The list of all groups.
*/
public Iterator getAllGroups()
{
return getContactListPanel()
.getContactList().getAllGroups();
}
/**
* Returns the Meta Contact Group corresponding to the given MetaUID.
*
* @param metaUID An identifier of a group.
* @return The Meta Contact Group corresponding to the given MetaUID.
*/
public MetaContactGroup getGroupByID(String metaUID)
{
return getContactListPanel()
.getContactList().getGroupByID(metaUID);
}
/**
* Before closing the application window saves the current size and position
* through the <tt>ConfigurationService</tt>.
*/
public class MainFrameWindowAdapter extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
if(!GuiActivator.getUIService().getExitOnMainWindowClose())
{
new Thread()
{
public void run()
{
if(ConfigurationManager.isQuitWarningShown())
{
MessageDialog dialog
= new MessageDialog(
MainFrame.this,
Messages.getI18NString("close").getText(),
Messages.getI18NString("hideMainWindow")
.getText(),
false);
int returnCode = dialog.showDialog();
if (returnCode == MessageDialog.OK_DONT_ASK_CODE)
{
ConfigurationManager
.setQuitWarningShown(false);
}
}
}
}.start();
ConfigurationManager.setApplicationVisible(false);
}
}
public void windowClosed(WindowEvent e)
{
if(GuiActivator.getUIService().getExitOnMainWindowClose())
{
try
{
GuiActivator.bundleContext.getBundle(0).stop();
}
catch (BundleException ex)
{
logger.error("Failed to gently shutdown Felix", ex);
System.exit(0);
}
//stopping a bundle doesn't leave the time to the felix thread to
//properly end all bundles and call their Activator.stop() methods.
//if this causes problems don't uncomment the following line but
//try and see why felix isn't exiting (suggesting: is it running
//in embedded mode?)
//System.exit(0);
}
}
}
/**
* Returns the class that manages user login.
* @return the class that manages user login.
*/
public LoginManager getLoginManager()
{
return loginManager;
}
/**
* Sets the class that manages user login.
* @param loginManager The user login manager.
*/
public void setLoginManager(LoginManager loginManager)
{
this.loginManager = loginManager;
}
public CallListPanel getCallListManager()
{
return this.tabbedPane.getCallListPanel();
}
/**
* Returns the panel containing the ContactList.
* @return ContactListPanel the panel containing the ContactList
*/
public ContactListPanel getContactListPanel()
{
return this.tabbedPane.getContactListPanel();
}
/**
* Returns the panel containing the chat rooms list.
* @return the panel containing the chat rooms list
*/
public ChatRoomsListPanel getChatRoomsListPanel()
{
return this.tabbedPane.getChatRoomsListPanel();
}
/**
* Adds a tab in the main tabbed pane, where the given call panel
* will be added.
*/
public void addCallPanel(CallPanel callPanel)
{
this.tabbedPane.addTab(callPanel.getTitle(), callPanel);
this.tabbedPane.setSelectedIndex(tabbedPane.getTabCount() - 1);
this.tabbedPane.revalidate();
}
/**
* Removes the tab in the main tabbed pane, where the given call panel
* is contained.
*/
public void removeCallPanel(CallPanel callPanel)
{
// Should remove all participant panels explicetly, thus removing also
// all related dialogs (like dialpad for example).
callPanel.removeDialogs();
tabbedPane.remove(callPanel);
Component c = getSelectedTab();
if(c == null || !(c instanceof CallPanel))
this.tabbedPane.setSelectedIndex(0);
this.tabbedPane.revalidate();
}
/**
* Returns the component contained in the currently selected tab.
* @return the selected CallPanel or null if there's no CallPanel selected
*/
public Component getSelectedTab()
{
Component c = this.tabbedPane.getSelectedComponent();
return c;
}
/**
* Checks in the configuration xml if there is already stored index for
* this provider and if yes, returns it, otherwise creates a new account
* index and stores it.
*
* @param protocolProvider the protocol provider
* @return the protocol provider index
*/
private int initiateProviderIndex(
ProtocolProviderService protocolProvider)
{
ConfigurationService configService
= GuiActivator.getConfigurationService();
String prefix = "net.java.sip.communicator.impl.gui.accounts";
List accounts = configService
.getPropertyNamesByPrefix(prefix, true);
Iterator accountsIter = accounts.iterator();
boolean savedAccount = false;
while(accountsIter.hasNext()) {
String accountRootPropName
= (String) accountsIter.next();
String accountUID
= configService.getString(accountRootPropName);
if(accountUID.equals(protocolProvider
.getAccountID().getAccountUniqueID())) {
savedAccount = true;
String index = configService.getString(
accountRootPropName + ".accountIndex");
if(index != null) {
//if we have found the accountIndex for this protocol provider
//return this index
return new Integer(index).intValue();
}
else {
//if there's no stored accountIndex for this protocol
//provider, calculate the index, set it in the configuration
//service and return it.
int accountIndex = createAccountIndex(protocolProvider,
accountRootPropName);
return accountIndex;
}
}
}
if(!savedAccount) {
String accNodeName
= "acc" + Long.toString(System.currentTimeMillis());
String accountPackage
= "net.java.sip.communicator.impl.gui.accounts."
+ accNodeName;
configService.setProperty(accountPackage,
protocolProvider.getAccountID().getAccountUniqueID());
int accountIndex = createAccountIndex(protocolProvider,
accountPackage);
return accountIndex;
}
return -1;
}
/**
* Creates and calculates the account index for the given protocol
* provider.
* @param protocolProvider the protocol provider
* @param accountRootPropName the path to where the index should be saved
* in the configuration xml
* @return the created index
*/
private int createAccountIndex(ProtocolProviderService protocolProvider,
String accountRootPropName)
{
ConfigurationService configService
= GuiActivator.getConfigurationService();
int accountIndex = -1;
Iterator pproviders = protocolProviders.keySet().iterator();
ProtocolProviderService pps;
while(pproviders.hasNext()) {
pps = (ProtocolProviderService)pproviders.next();
if(pps.getProtocolDisplayName().equals(
protocolProvider.getProtocolDisplayName())
&& !pps.equals(protocolProvider)) {
int index = ((Integer)protocolProviders.get(pps)).intValue();
if(accountIndex < index) {
accountIndex = index;
}
}
}
accountIndex++;
configService.setProperty(
accountRootPropName + ".accountIndex",
new Integer(accountIndex));
return accountIndex;
}
/**
* Updates the indexes in the configuration xml, when a provider has been
* removed.
* @param removedProvider the removed protocol provider
*/
private void updateProvidersIndexes(ProtocolProviderService removedProvider)
{
ConfigurationService configService
= GuiActivator.getConfigurationService();
String prefix = "net.java.sip.communicator.impl.gui.accounts";
Iterator pproviders = protocolProviders.keySet().iterator();
ProtocolProviderService currentProvider = null;
int sameProtocolProvidersCount = 0;
while(pproviders.hasNext()) {
ProtocolProviderService pps
= (ProtocolProviderService)pproviders.next();
if(pps.getProtocolDisplayName().equals(
removedProvider.getProtocolDisplayName())) {
sameProtocolProvidersCount++;
if(sameProtocolProvidersCount > 1) {
break;
}
currentProvider = pps;
}
}
if(sameProtocolProvidersCount < 2 && currentProvider != null) {
protocolProviders.put(currentProvider, new Integer(0));
List accounts = configService
.getPropertyNamesByPrefix(prefix, true);
Iterator accountsIter = accounts.iterator();
while(accountsIter.hasNext()) {
String rootPropName
= (String) accountsIter.next();
String accountUID
= configService.getString(rootPropName);
if(accountUID.equals(currentProvider
.getAccountID().getAccountUniqueID())) {
configService.setProperty(
rootPropName + ".accountIndex",
new Integer(0));
}
}
this.getStatusPanel().updateAccountIndex(currentProvider);
}
}
/**
* If the protocol provider supports presence operation set searches the
* last status which was selected, otherwise returns null.
*
* @param protocolProvider the protocol provider we're interested in.
* @return the last protocol provider presence status, or null if this
* provider doesn't support presence operation set
*/
public Object getProtocolProviderLastStatus(
ProtocolProviderService protocolProvider)
{
if(getProtocolPresenceOpSet(protocolProvider) != null)
return this.statusPanel
.getLastPresenceStatus(protocolProvider);
else
return this.statusPanel.getLastStatusString(protocolProvider);
}
/**
* <tt>RenameAction</tt> is invoked when user presses the F2 key. Depending
* on the selection opens the appropriate form for renaming.
*/
private class RenameAction extends AbstractAction
{
public void actionPerformed(ActionEvent e)
{
Object selectedObject
= getContactListPanel().getContactList().getSelectedValue();
if(selectedObject instanceof MetaContact) {
RenameContactDialog dialog = new RenameContactDialog(
MainFrame.this, (MetaContact)selectedObject);
dialog.setLocation(
Toolkit.getDefaultToolkit().getScreenSize().width/2
- 200,
Toolkit.getDefaultToolkit().getScreenSize().height/2
- 50
);
dialog.setVisible(true);
dialog.requestFocusInFiled();
}
else if(selectedObject instanceof MetaContactGroup) {
RenameGroupDialog dialog = new RenameGroupDialog(
MainFrame.this, (MetaContactGroup)selectedObject);
dialog.setLocation(
Toolkit.getDefaultToolkit().getScreenSize().width/2
- 200,
Toolkit.getDefaultToolkit().getScreenSize().height/2
- 50
);
dialog.setVisible(true);
dialog.requestFocusInFiled();
}
}
}
/**
* Overwrites the <tt>SIPCommFrame</tt> close method. This method is
* invoked when user presses the Escape key.
*/
protected void close(boolean isEscaped)
{
ContactList contactList = getContactListPanel().getContactList();
ContactRightButtonMenu contactPopupMenu
= contactList.getContactRightButtonMenu();
GroupRightButtonMenu groupPopupMenu
= contactList.getGroupRightButtonMenu();
CommonRightButtonMenu commonPopupMenu
= getContactListPanel().getCommonRightButtonMenu();
if(contactPopupMenu != null && contactPopupMenu.isVisible()) {
contactPopupMenu.setVisible(false);
}
else if(groupPopupMenu != null && groupPopupMenu.isVisible()) {
groupPopupMenu.setVisible(false);
}
else if(commonPopupMenu != null && commonPopupMenu.isVisible()) {
commonPopupMenu.setVisible(false);
}
else if(statusPanel.hasSelectedMenus() || menu.hasSelectedMenus()) {
MenuSelectionManager selectionManager
= MenuSelectionManager.defaultManager();
selectionManager.clearSelectedPath();
}
}
/**
* Returns the main menu in the application window.
* @return the main menu in the application window
*/
public MainMenu getMainMenu()
{
return menu;
}
/**
* Returns the <tt>ChatWindowManager</tt>.
* @return the <tt>ChatWindowManager</tt>
*/
public ChatWindowManager getChatWindowManager()
{
return chatWindowManager;
}
/**
* Returns the <tt>HistoryWindowManager</tt>.
* @return the <tt>HistoryWindowManager</tt>
*/
public HistoryWindowManager getHistoryWindowManager()
{
return historyWindowManager;
}
/**
* Returns the class that manages all chat room invitation and message
* events.
* @return the class that manages all chat room invitation and message
* events.
*/
public MultiUserChatManager getMultiUserChatManager()
{
return multiUserChatManager;
};
/**
* The <tt>ForwordTabAction</tt> is an <tt>AbstractAction</tt> that
* changes the currently selected tab with the next one. Each time when the
* last tab index is reached the first one is selected.
*/
private class ForwordTabAction
extends AbstractAction
{
/**
* Changes the currently selected tab with the next one. Each time when
* the last tab index is reached the first one is selected.
* @param e the action event
*/
public void actionPerformed(ActionEvent e)
{
int selectedIndex = tabbedPane.getSelectedIndex();
if (selectedIndex < tabbedPane.getTabCount() - 1)
tabbedPane.setSelectedIndex(selectedIndex + 1);
else
tabbedPane.setSelectedIndex(0);
}
};
/**
* The <tt>BackwordTabAction</tt> is an <tt>AbstractAction</tt> that
* changes the currently selected tab with the previous one. Each time when
* the first tab index is reached the last one is selected.
*/
private class BackwordTabAction
extends AbstractAction
{
/**
* Changes the currently selected tab with the previous one. Each time
* when the first tab index is reached the last one is selected.
* @param e the action event
*/
public void actionPerformed(ActionEvent e)
{
int selectedIndex = tabbedPane.getSelectedIndex();
if (selectedIndex != 0)
tabbedPane.setSelectedIndex(selectedIndex - 1);
else
tabbedPane.setSelectedIndex(tabbedPane.getTabCount() - 1);
}
};
/**
*
* @param protocolProvider
* @param contactHandler
*/
public void addProviderContactHandler(
ProtocolProviderService protocolProvider,
ContactEventHandler contactHandler)
{
providerContactHandlers.put(protocolProvider, contactHandler);
}
/**
* Returns the <tt>ContactEventHandler</tt> registered for this protocol
* provider.
*
* @param protocolProvider the <tt>ProtocolProviderService</tt> for which
* we are searching a <tt>ContactEventHandler</tt>.
* @return the <tt>ContactEventHandler</tt> registered for this protocol
* provider
*/
public ContactEventHandler getContactHandler(
ProtocolProviderService protocolProvider)
{
return providerContactHandlers.get(protocolProvider);
}
/**
*
* @param protocolProvider
* @return
*/
private ContactEventHandler getContactHandlerForProvider(
ProtocolProviderService protocolProvider)
{
ServiceReference[] serRefs = null;
String osgiFilter = "("
+ ProtocolProviderFactory.PROTOCOL
+ "=" + protocolProvider.getProtocolName()+")";
try
{
serRefs = GuiActivator.bundleContext.getServiceReferences(
ContactEventHandler.class.getName(), osgiFilter);
}
catch (InvalidSyntaxException ex){
logger.error("GuiActivator : " + ex);
}
if(serRefs == null)
return null;
return (ContactEventHandler) GuiActivator.bundleContext
.getService(serRefs[0]);
}
/**
* Initialize plugin components already registered for this container.
*/
private void initPluginComponents()
{
// Search for plugin components registered through the OSGI bundle
// context.
ServiceReference[] serRefs = null;
String osgiFilter = "("
+ Container.CONTAINER_ID
+ "="+Container.CONTAINER_CONTACT_LIST.getID()+")";
try
{
serRefs = GuiActivator.bundleContext.getServiceReferences(
PluginComponent.class.getName(),
osgiFilter);
}
catch (InvalidSyntaxException exc)
{
logger.error("Could not obtain plugin reference.", exc);
}
if (serRefs != null)
{
for (int i = 0; i < serRefs.length; i ++)
{
PluginComponent c = (PluginComponent) GuiActivator
.bundleContext.getService(serRefs[i]);
Object constraints = null;
if (c.getConstraints() != null)
constraints = UIServiceImpl
.getBorderLayoutConstraintsFromContainer(c.getConstraints());
else
constraints = BorderLayout.SOUTH;
this.getContentPane().add( (Component) c.getComponent(),
constraints);
}
}
GuiActivator.getUIService().addPluginComponentListener(this);
}
/**
* Adds the associated with this <tt>PluginComponentEvent</tt> component
* to the appropriate container.
*/
public void pluginComponentAdded(PluginComponentEvent event)
{
PluginComponent c = event.getPluginComponent();
if (c.getContainer().equals(Container.CONTAINER_CONTACT_LIST))
{
Object constraints = null;
if (c.getConstraints() != null)
constraints = UIServiceImpl
.getBorderLayoutConstraintsFromContainer(c.getConstraints());
else
constraints = BorderLayout.SOUTH;
this.getContentPane().add((Component) c.getComponent(), constraints);
}
this.pack();
}
/**
* Removes the associated with this <tt>PluginComponentEvent</tt> component
* from this container.
*/
public void pluginComponentRemoved(PluginComponentEvent event)
{
PluginComponent c = event.getPluginComponent();
Container containerID = c.getContainer();
if (containerID.equals(Container.CONTAINER_CONTACT_LIST))
{
this.getContentPane().remove((Component) c.getComponent());
}
}
/**
* The logo bar is positioned on the top of the window and is meant to
* contain the application logo.
*/
private class LogoBar
extends JPanel
{
/**
* Creates the logo bar and specify the size.
*/
public LogoBar()
{
int width = SizeProperties.getSize("logoBarWidth");
int height = SizeProperties.getSize("logoBarHeight");
this.setMinimumSize(new Dimension(width, height));
this.setPreferredSize(new Dimension(width, height));
}
/**
* Paints the logo bar.
*
* @param g the <tt>Graphics</tt> object used to paint the background
* image of this logo bar.
*/
public void paintComponent(Graphics g)
{
super.paintComponent(g);
Image backgroundImage
= ImageLoader.getImage(ImageLoader.WINDOW_TITLE_BAR);
g.setColor(new Color(
ColorProperties.getColor("logoBarBackground")));
g.fillRect(0, 0, this.getWidth(), this.getHeight());
g.drawImage(backgroundImage, 0, 0, null);
}
}
}
|