Uses of Interface
ca.cgjennings.platform.AgnosticDialog
-
-
Uses of AgnosticDialog in ca.cgjennings.apps.arkham
Classes in ca.cgjennings.apps.arkham that implement AgnosticDialog Modifier and Type Class Description class
ColourDialog
A colour selection dialog consistent with the tint selector (HSBPanel
).class
ParagraphDialog
Dialog for choosing block and paragraph alignment. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.deck
Classes in ca.cgjennings.apps.arkham.deck that implement AgnosticDialog Modifier and Type Class Description class
CustomPaperDialog
Dialog for creating and editing custom paper sizes. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.deck.item
Classes in ca.cgjennings.apps.arkham.deck.item that implement AgnosticDialog Modifier and Type Class Description class
StyleEditor
An editor dialog for the styles of one or more page items in a deck. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.dialog
Classes in ca.cgjennings.apps.arkham.dialog that implement AgnosticDialog Modifier and Type Class Description class
AbbreviationEditor
An editor forAbbreviationTable
s.class
DictionaryEditor
Basic testing and editing of spelling dictionaries.class
ImageResourceBrowser
A browser interface for selecting an image from the program's (and plug-ins') image resources.class
InsertCharsDialog
Dialog for inserting Unicode symbols.class
InsertImageDialog
Dialog to choose an image to insert via markup.class
LocaleSelectionDialog
Prompts the user to select a locale. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.dialog.prefs
Classes in ca.cgjennings.apps.arkham.dialog.prefs that implement AgnosticDialog Modifier and Type Class Description class
Preferences
The dialog that displays registered preference categories. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.plugins
Classes in ca.cgjennings.apps.arkham.plugins that implement AgnosticDialog Modifier and Type Class Description class
UILibraryDialogTemplate
This dialog class is used to help create dialogs from containers in the uilayout scripting library. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.plugins.catalog
Classes in ca.cgjennings.apps.arkham.plugins.catalog that implement AgnosticDialog Modifier and Type Class Description class
CatalogDialog
A dialog that can download, display, and install plug-ins from cataloguesclass
CoreUpdateDialog
class
NetworkProxy
Applies and configures network proxy settings. -
Uses of AgnosticDialog in ca.cgjennings.apps.arkham.project
Classes in ca.cgjennings.apps.arkham.project that implement AgnosticDialog Modifier and Type Class Description class
NewDocumentDialog
Allows the user to select one of a set of document formats and create a document of that type.class
NewProjectDialog
Dialog that manages the creation of a new project folder.class
ProjectFolderDialog
A dialog for selecting project file folders, or folders OTHER THAN project file folders.class
RootEditor
An basic interactive editor for eons-plugin files. -
Uses of AgnosticDialog in ca.cgjennings.platform
Subinterfaces of AgnosticDialog in ca.cgjennings.platform Modifier and Type Interface Description interface
QueriedAgnosticDialog
A dialog may implement this instead ofAgnosticDialog
to have more control over how the OK and Cancel buttons are modified.Methods in ca.cgjennings.platform with parameters of type AgnosticDialog Modifier and Type Method Description static javax.swing.JButton
PlatformSupport. makeAgnosticDialog(AgnosticDialog dialog, boolean isInOKCancelOrder, javax.swing.JButton designedOK, javax.swing.JButton designedCancel)
Initialize anAgnosticDialog
by swapping the OK and Cancel buttons, if appropriate, and attaching action listeners to thehandleOKAction(java.awt.event.ActionEvent)
andhandleCancelAction(java.awt.event.ActionEvent)
methods.static javax.swing.JButton
PlatformSupport. makeAgnosticDialog(AgnosticDialog dialog, javax.swing.JButton designedOK, javax.swing.JButton designedCancel)
A convenience method formakeAgnosticDialog( dialog, true, designedOK, designedCancel )
, which assumes that the dialog buttons are in "Windows order" (OK on the left, Cancel on the right).
-