Platforms to show: All Mac Windows Linux Cross-Platform

/Tools/Tidy/Tidy Options


Required plugins for this example: MBS Util Plugin, MBS Tools Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Tools/Tidy/Tidy Options

This example is the version from Sun, 17th Mar 2012.

Project "Tidy Options.xojo_binary_project"
Class App Inherits Application
Const kEditClear = "&Delete"
Const kFileQuit = "&Quit"
Const kFileQuitShortcut = ""
End Class
Class Window1 Inherits Window
Control List Inherits Listbox
ControlInstance List Inherits Listbox
End Control
EventHandler Sub Open() dim doc as new TidyDocumentMBS dim it as TidyIteratorMBS=doc.OptionList dim o as TidyOptionMBS = doc.NextOption(it) while o<>Nil dim c,t as string Select case o.Type case TidyOptionTypeMBS.TidyBoolean t=" = Bool" case TidyOptionTypeMBS.TidyInteger t=" = Integer" case TidyOptionTypeMBS.TidyString t=" = String" else t="" end Select Select case o.Category case TidyConfigCategoryMBS.TidyDiagnostics c=" = Diagnostics" case TidyConfigCategoryMBS.TidyEncoding c=" = Encoding" case TidyConfigCategoryMBS.TidyMarkup c=" = Markup" case TidyConfigCategoryMBS.TidyMiscellaneous c=" = Miscellaneous" case TidyConfigCategoryMBS.TidyPrettyPrint c=" = PrettyPrint" else c="" end Select List.AddRow "" List.Cell(List.LastIndex,0) = str(o.Category)+c Select case o.Type case TidyOptionTypeMBS.TidyBoolean List.Cell(List.LastIndex,1) = str(o.DefaultBoolean) case TidyOptionTypeMBS.TidyInteger List.Cell(List.LastIndex,1) = str(o.DefaultInteger) case TidyOptionTypeMBS.TidyString List.Cell(List.LastIndex,1) = o.DefaultString end Select List.Cell(List.LastIndex,2) = DecodingFromHTMLMBS(o.Description) List.Cell(List.LastIndex,3) = str(o.ID) List.Cell(List.LastIndex,4) = str(o.IsReadOnly) List.Cell(List.LastIndex,5) = o.Name List.Cell(List.LastIndex,6) = str(o.Type)+t o = doc.NextOption(it) wend End EventHandler
End Class
MenuBar MenuBar1
MenuItem FileMenu = "&File"
MenuItem FileQuit = "#App.kFileQuit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "#App.kEditClear"
MenuItem UntitledMenu0 = "-"
MenuItem EditSelectAll = "Select &All"
End MenuBar
End Project

See also:

The items on this page are in the following plugins: MBS Tools Plugin.


The biggest plugin in space...