In the code for your user control add
using mojoPortal.Web;
using mojoPortal.Web.Editor;
in the OnInit add:
SiteUtils.SetupEditor(MyEditor);
and in page load or a method called from page load, set the toolbar like this:
MyEditor.WebEditor.ToolBar = ToolBar.FullWithTemplates;
For any issue like this, just look at code for existing features that do things like you want to do.
Hope it helps,
Joe