
GAppsLoginDialog
Description
In BBj11.0 and higher, the GAppsLoginDialog class is one of the BBj CustomObjects that comprises the GApps utility. This class can used in a BBj application to obtain the necessary user credentials via a login dialog to authenticate with a Goolge Sites service.
Creation
The GAppsLoginDialog class is found in <bbj install>/utils/gapps/gapps.bbj.
GAppsLoginDialog(GAppsService service)
Parameters
Return Value |
Description |
service |
Specifies the GAppsService to which the user needs to be authenticated. |
Methods of GAppLoginDialog
Return Value |
Method |
int |
doModal() |
string |
getUser() |
string |
|
boolean |
Remarks
This method is dependent on a GUI client.
Constants
Name |
Value |
CANCELLED |
0 |
OK |
1 |
Example
rem Use statements
use ::gapps.bbj::GDocFolderSelectionDialog
use ::gapps.bbj::GDocSaveDialog
use ::gapps.bbj::GDocOpenDialog
use ::gapps.bbj::GDoc
rem Run a demo
rem mode$="folder"
rem mode$="save"
rem Create a folder selection dialog
declare GDocFolderSelectionDialog folderSelectionDialog!
folderSelectionDialog! = new GDocFolderSelectionDialog()
rc = folderSelectionDialog!.doModal()
if (rc = GDocFolderSelectionDialog.getSELECTED())
documentFolder$ = folderSelectionDialog!.getDocumentFolder()
x=MsgBox(documentFolder$,0,"Selected folder")
endif
rem Create a save dialog
declare GDocSaveDialog saveDialog!
saveDialog! = new GDocSaveDialog()
saveDialog!.setDefaultType(GDoc.getSPREADSHEET_TYPE())
rc = saveDialog!.doModal()
if (rc = GDocSaveDialog.getSELECTED())
title$ = saveDialog!.getDocumentTitle()
type$ = saveDialog!.getDocumentType()
folder$ = saveDialog!.getDocumentFolder()
x=MsgBox(folder$ +"/" + title$,0,"Selected document")
endif
rem Create a open dialog
declare GDocOpenDialog openDialog!
openDialog! = new GDocOpenDialog()
openDialog!.setTitle("Google Documents")
openDialog!.setMultipleSelection(1)
rc = openDialog!.doModal()
if (rc = GDocOpenDialog.getSELECTED())
declare BBjVector selectedDocs!
selectedDocs! = openDialog!.getSelectedDocs()
numSelectedDocs = selectedDocs!.size()
if (numSelectedDocs > 0)
for i = 0 to numSelectedDocs-1
declare GDoc selectedDoc!
selectedDoc! = cast(GDoc,selectedDocs!.getItem(i))
selectedDoc!.openInBrowser()
next i
endif
endif
release