bigbluebutton-Github/bigbluebutton-client
2013-01-05 13:29:03 -08:00
..
.settings mic disable state is implemented, but can't filter by role yet 2013-03-28 14:38:37 -07:00
branding added disabled icons for left and right arrow buttons in presentation window 2013-04-27 10:21:40 -07:00
build/lib - modify build.xml to use an external locale.xml for supported locales 2010-06-09 17:41:30 -04:00
config - forgot to add /fcs/ handler 2012-09-14 19:32:50 +00:00
html-templateBackup Backup before opening red5 up to dev. Still has Line tool. 2012-06-21 23:06:24 -04:00
libs hiding window contents on minimize 2013-01-03 17:50:40 -05:00
locale Changed Ctrl-X to Ctrl-L 2013-04-26 12:13:41 -07:00
resources adding minWidth to the current default layouts 2013-04-25 18:16:14 -03:00
src put a check while the activation is complete for publishing 2013-05-03 16:52:07 -05:00
.actionScriptProperties add back Flex project files 2013-01-05 13:29:03 -08:00
.flexProperties add back Flex project files 2013-01-05 13:29:03 -08:00
.gitignore create client dir if not present 2013-04-27 14:15:01 -07:00
.project add back Flex project files 2013-01-05 13:29:03 -08:00
build.xml - don't delete locales folder unless building locales 2013-04-28 17:15:05 +00:00
LICENSE.txt move into trunk to use as development 2008-11-05 14:52:33 +00:00
README Deskshare and webcam publishing included in tab order. Some tweaking required. 2012-11-22 21:43:31 +00:00
vm-build.sh add a script to each module that allows me to build / run in dev mode on my vm without having to remember which method I have to build this module in 2010-05-07 21:53:52 +00:00

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.