bigbluebutton-Github/bigbluebutton-client
2014-05-23 10:29:09 -07:00
..
.settings implement create or select poll UI 2013-06-26 20:45:10 +00:00
branding Merge pull request #305 from syeshchenko/presentationWindowFix 2014-02-12 13:04:00 -05:00
build/lib
config
html-templateBackup
libs
locale - display message to user when auth token is invalid 2014-05-21 18:42:49 +00:00
resources Merge branch 'global-audio' into merge-global-audio 2014-04-23 16:13:40 -03:00
src - remove some of the menu items for the gear icon 2014-05-23 10:29:09 -07:00
.actionScriptProperties implement create or select poll UI 2013-06-26 20:45:10 +00:00
.flexProperties - add more polling models 2013-06-19 19:49:02 +00:00
.gitignore - add bin-debug dir to ignore 2014-03-14 16:03:23 +00:00
.project - add more polling models 2013-06-19 19:49:02 +00:00
build.xml - add target to build a single locale 2013-10-21 19:37:11 +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.