Uses of Interface
jpicedt.graphic.view.ViewFactory
-
Packages that use ViewFactory Package Description jpicedt.format.output.eepic Classes (formatter, view factory,...) related to the epic/eepic content-type.jpicedt.format.output.latex Classes (formatter, view factory,...) related to the LaTeX (standard) content-type.jpicedt.format.output.pstricks Classes (formatter, view factory,...) related to the PsTricks content-type.jpicedt.graphic jPicEdt library core classes and packages.jpicedt.graphic.model Document structure and graphic primitives.jpicedt.graphic.toolkit Controller (document editing through UI actions)jpicedt.graphic.view Document appearance. -
-
Uses of ViewFactory in jpicedt.format.output.eepic
Classes in jpicedt.format.output.eepic that implement ViewFactory Modifier and Type Class Description classEepicViewFactoryA factory to create a View for a given Element when the content type for the model is Eepic.Methods in jpicedt.format.output.eepic that return ViewFactory Modifier and Type Method Description ViewFactoryEepicContentType. createViewFactory()Creates a ViewFactory that's suited for this content-type -
Uses of ViewFactory in jpicedt.format.output.latex
Classes in jpicedt.format.output.latex that implement ViewFactory Modifier and Type Class Description classLatexViewFactoryCreates a View for a given Element when the underlying content type is the LaTeX-picture environment.Methods in jpicedt.format.output.latex that return ViewFactory Modifier and Type Method Description ViewFactoryLatexContentType. createViewFactory()Creates a ViewFactory that's suited for this content-type -
Uses of ViewFactory in jpicedt.format.output.pstricks
Classes in jpicedt.format.output.pstricks that implement ViewFactory Modifier and Type Class Description classPstricksViewFactoryA factory to create a View for a given Element when the underlying content type for the model is Pstricks.Methods in jpicedt.format.output.pstricks that return ViewFactory Modifier and Type Method Description ViewFactoryPstricksContentType. createViewFactory()Creates a ViewFactory that's suited for this content-type -
Uses of ViewFactory in jpicedt.graphic
Methods in jpicedt.graphic that return ViewFactory Modifier and Type Method Description ViewFactoryContentType. createViewFactory()Creates a ViewFactory that's suited for this content-typeViewFactoryDefaultContentType. createViewFactory()Creates a ViewFactory that's suited for this content-type -
Uses of ViewFactory in jpicedt.graphic.model
Methods in jpicedt.graphic.model with parameters of type ViewFactory Modifier and Type Method Description voidAbstractElement. setViewFromFactory(ViewFactory f)set the view for this AbstractElement from the given view factory or remove the view if f is null.voidBranchElement. setViewFromFactory(ViewFactory f)set the view for this Element from the given view factory, then set the view for children.voidElement. setViewFromFactory(ViewFactory f)set the view for this Element from the given view factoryvoidDrawing. setViewTree(ViewFactory f)set the view tree that renders this drawing to screen, starting from the root-element. -
Uses of ViewFactory in jpicedt.graphic.toolkit
Methods in jpicedt.graphic.toolkit that return ViewFactory Modifier and Type Method Description ViewFactoryEditorKit. getViewFactory() -
Uses of ViewFactory in jpicedt.graphic.view
Classes in jpicedt.graphic.view that implement ViewFactory Modifier and Type Class Description classDefaultViewFactoryThis is the default factory used to create a View for a given Element ; should be used when one wants to render all Element's attributes ; otherwise subclass with your own ViewFactory and override : createView : simply return your own View for some or all Element's (then call super.createView) factory methods, e.g.Methods in jpicedt.graphic.view that return ViewFactory Modifier and Type Method Description ViewFactoryAbstractView. getViewFactory()Fetches the ViewFactory implementation that is feeding the view hierarchy.ViewFactoryDefaultViewFactory.LeafElementView. getViewFactory()Fetches the ViewFactory implementation that is feeding the view hierarchy.ViewFactoryView. getViewFactory()Fetches the ViewFactory implementation that is feeding the view hierarchy.
-