bigbluebutton-Github/bigbluebutton-client
2013-08-29 15:56:51 -03:00
..
.settings mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
branding Merge pull request #235 from mconf/resolution-combo-style 2013-08-22 12:46:11 -07:00
build/lib
config
html-templateBackup
libs hiding window contents on minimize 2013-01-03 17:50:40 -05:00
locale update languages (fr_FR,he_IL,id_ID,vi_VN) 2013-08-20 16:34:42 -05:00
resources added enableHandRaise and enableSettingsButton as config.xml options for the Users Window 2013-08-23 15:36:49 -07:00
src the user private chat selector was still using the hardcoded "you" instead of using the localized string of the users module, I just applied the same string here 2013-08-29 15:56:51 -03:00
.actionScriptProperties viewers and listeners modules wiped from record 2013-05-14 11:40:21 -07:00
.flexProperties viewers and listeners modules wiped from record 2013-05-14 11:40:21 -07:00
.gitignore create client dir if not present 2013-04-27 14:15:01 -07:00
.project - cleanup project files 2013-04-27 13:17:30 -07:00
build.xml - clean up client output dir 2013-05-30 21:45:04 +00:00
LICENSE.txt
README
vm-build.sh

see http://code.google.com/p/bigbluebutton

Developing the client
1. Copy src/conf/config.xml.dev to src/cong/config.xml

Implementing Tab Order:
The default tab order (necessary for accessibility) is hard-coded into these modules and the main toolbars, and is as follows:
	Main Toolbar
	Desktop sharing (if open)
	Webcam publishing (if open)
	Viewers list window
	Listeners list window
	Webcam window
	Presentation window
	Whiteboard toolbar
	Chat window
	Bottom Toolbar

If you want to change the tab order for BigBlueButton , check resources/config.xml.template and it to src/conf/config.xml.
Certain modules must have the baseTabIndex property, and for the default tab order, their values should be as follows:  

	101: DeskShareModule	(Desktop sharing module)
	101: VideoconfModule	(Webcam publishing window)
	201: ViewersModule		(Viewers list window)
	301: ListenersModule	(Listeners list window)
	401: VideodockModule	(Webcam window)
	501: PresentModule		(Presentation window)
	601: WhiteboardModule	(Whiteboard toolbar)
	701: ChatModule			(Chat window)

The 100-value separation guarantees enough space for a sufficient number of elements in each module. The Main Toolbar's
base index is 1, the bottom toolbar's base index is 100,000, but you shouldn't need to change them anyway.
Deskshare and Webcam publishing have the same base index, that is not an error.