#include <Fui.h>
Public Member Functions | |
| CFuiManager (void) | |
| ~CFuiManager (void) | |
| void | CreateFuiWindow (FuiEventNoticeCb handler, Tag id, const char *winFilename) |
| void | DestroyFuiWindow (Tag id) |
| bool | IsWindowCreated (Tag id) |
| void | Draw (void) |
| CFuiTheme * | GetTheme (Tag tag) |
| CFuiThemeWidget * | GetThemeWidget (Tag tag, std::string name) |
| void | GainFocus (Tag windowID, Tag componentID) |
| void | LoseFocus (Tag windowID, Tag componentID) |
| void | GenerateEventNotice (Tag windowId, Tag componentId, EFuiEvents event, EFuiEvents subevent) |
| void | DrawNoticeToUser (const char *text, float timeout) |
| bool | MouseMove (int x, int y) |
| bool | MouseClick (int x, int y, EMouseButton button) |
| bool | MouseStopClick (int x, int y, EMouseButton button) |
| CFuiWindow * | GetFuiWindow (Tag window) |
| void | Print (FILE *f) |
| void | SetWindowTitle (Tag window, const char *title) |
| void | SetComponentText (Tag window, Tag component, const char *text) |
| void | SetLabelColour (Tag window, Tag labelID, unsigned int colour) |
| int | GetCheckboxState (Tag windowID, Tag checkID) |
| void | SetCheckboxState (Tag windowID, Tag checkID, int state) |
| int | GetRadioState (Tag windowID, Tag radioID) |
| void | SetRadioState (Tag windowID, Tag radioID, int state) |
| void | SetTextMaxChars (Tag windowID, Tag textID, int maxChars) |
| int | GetTextMaxChars (Tag windowID, Tag textID) |
| void | UseTextPassword (Tag windowID, Tag textID, int passwordFlag) |
| int | IsTextPassword (Tag windowID, Tag textID) |
| int | GetTextLength (Tag windowID, Tag textID) |
| void | SetTextText (Tag windowID, Tag textID, char *text) |
| char * | GetTextText (Tag windowID, Tag textID) |
| void | SetTextSelection (Tag windowID, Tag textID, int firstChar, int lastChar) |
| void | GetTextSelection (Tag windowID, Tag textID, int *firstChar, int *lastChar) |
| void | AddPopupItem (Tag windowID, Tag popupID, Tag itemID, const char *label) |
| void | AddPopupSeperator (Tag windowID, Tag popupID) |
| void | RemovePopupItem (Tag windowID, Tag popupID, Tag itemID) |
| void | ClearPopupItems (Tag windowID, Tag popupID) |
| void | SelectPopupItem (Tag windowID, Tag popupID, Tag itemID) |
| Tag | GetPopupItemSelection (Tag windowID, Tag popupID, char *outText) |
| void | SetGroupBoxLabel (Tag windowID, Tag groupID, char *label) |
| void | SetSliderMajorTickSpacing (Tag windowID, Tag sliderID, float spacing) |
| void | SetSliderMinorTickSpacing (Tag windowID, Tag sliderID, float spacing) |
| void | SetSliderSnapToTicks (Tag windowID, Tag sliderID, int snapFlag) |
| void | SetSliderDrawMajorTicks (Tag windowID, Tag sliderID, int drawFlag) |
| void | SetSliderDrawMinorTicks (Tag windowID, Tag sliderID, int drawFlag) |
| float | GetSliderMajorTickSpacing (Tag windowID, Tag sliderID) |
| float | GetSliderMinorTickSpacing (Tag windowID, Tag sliderID) |
| int | GetSliderSnapToTicks (Tag windowID, Tag sliderID) |
| int | GetSliderDrawMajorTicks (Tag windowID, Tag sliderID) |
| int | GetSliderDrawMinorTicks (Tag windowID, Tag sliderID) |
| void | SetSliderLabel (Tag windowID, Tag sliderID, char *label) |
| void | ScrollListToRow (Tag windowID, Tag listID, int row) |
| void | ScrollListToColumn (Tag windowID, Tag listID, int column) |
| int | GetListRowCount (Tag windowID, Tag listID) |
| int | GetListColumnCount (Tag windowID, Tag listID) |
| void | AddListColumn (Tag windowID, Tag listID, int width, char *title) |
| void | DeleteListColumn (Tag windowID, Tag listID, int column) |
| void | DeleteAllListColumns (Tag windowID, Tag listID) |
| void | SetListColumnWidth (Tag windowID, Tag listID, int column, int width) |
| void | AddListRow (Tag windowID, Tag listID, int height) |
| void | DeleteListRow (Tag windowID, Tag listID, int row) |
| void | DeleteAllListRows (Tag windowID, Tag listID) |
| int | CountListSelectedRows (Tag windowID, Tag listID) |
| int | GetListSelectedRow (Tag windowID, Tag listID, int index) |
| void | SelectListRow (Tag windowID, Tag listID, int row) |
| void | ClearListSelection (Tag windowID, Tag listID) |
| void | SetListCellText (Tag windowID, Tag listID, int row, int column, char *text) |
| void | SetListCellIcon (Tag windowID, Tag listID, int row, int column, char *filename) |
| void | ClearListCellText (Tag windowID, Tag listID, int row, int column) |
| void | ClearListCellIcon (Tag windowID, Tag listID, int row, int column) |
| void | GetListCellText (Tag windowID, Tag listID, int row, int column, char *outtext) |
| void | AddGraphTrace (Tag windowID, Tag graphID, Tag traceID, int traceType) |
| void | RemoveGraphTrace (Tag windowID, Tag graphID, Tag traceID) |
| void | RemoveAllGraphTraces (Tag windowID, Tag graphID) |
| void | AddGraphTracePoint (Tag windowID, Tag graphID, Tag traceID, float x, float y) |
| void | ClearGraphTracePoints (Tag windowID, Tag graphID, Tag traceID) |
| void | SetGraphTraceRange (Tag windowID, Tag graphID, Tag traceID, float minX, float minY, float maxX, float maxY) |
| void | SetGraphTraceColour (Tag windowID, Tag graphID, Tag traceID, unsigned int colour) |
| void | SetGraphUseGrid (Tag windowID, Tag graphID, int useGrid) |
| void | SetGraphGridRange (Tag windowID, Tag graphID, float minX, float minY, float maxX, float maxY) |
| void | SetGraphGridSpacing (Tag windowID, Tag graphID, float xStep, float yStep) |
| void | SetGridColour (Tag windowID, Tag graphID, unsigned int colour) |
| void | SetGridBackColour (Tag windowID, Tag graphID, unsigned int colour) |
| void | GetGraphGridRange (Tag windowID, Tag graphID, float *minX, float *minY, float *maxX, float *maxY) |
| void | GetGraphGridSpacing (Tag windowID, Tag graphID, float *xStep, float *yStep) |
Static Public Member Functions | |
| static Tag | GetComponentType (const char *name) |
Protected Member Functions | |
| CFuiComponent * | FindComponent (Tag windowID, Tag id) |
| CFuiLabel * | FindLabel (Tag windowID, Tag labelID) |
| CFuiCheckbox * | FindCheckbox (Tag windowID, Tag checkboxID) |
| CFuiList * | FindList (Tag windowID, Tag listID) |
| CFuiSlider * | FindSlider (Tag windowID, Tag sliderID) |
| CFuiGraph * | FindGraph (Tag windowID, Tag graphID) |
Protected Attributes | |
| std::map< Tag, CFuiWindow * > | windowMap |
| std::map< Tag, CFuiTheme * > | themeMap |
| CFuiTextPopup * | slew |
| CFuiTextPopup * | pause |
| CFuiTextPopup * | usermsg |
| bool | userMsgActive |
| float | userMsgExpiry |
Definition at line 1371 of file Fui.h.
|
|
Definition at line 39 of file FuiManager.cpp. References globals, gtfo, pause, pclose(), peof(), SGlobals::pfs, pgets(), popen(), SGlobals::screenHeight, SGlobals::screenWidth, CFuiComponent::SetPosition(), CFuiTextPopup::SetText(), slew, StringToTag(), themeMap, TrimTrailingWhitespace(), and usermsg. |
|
|
Delete all FUI themes loaded in the constructor. Close any windows that are open. Definition at line 112 of file FuiManager.cpp. |
|
||||||||||||||||||||
|
Definition at line 1164 of file FuiManager.cpp. References CFuiGraph::AddTrace(), and FindGraph(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||||||
|
Definition at line 1188 of file FuiManager.cpp. References CFuiGraph::AddTracePoint(), and FindGraph(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||
|
Definition at line 1019 of file FuiManager.cpp. References CFuiList::AddColumn(), and FindList(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||
|
Definition at line 1051 of file FuiManager.cpp. References CFuiList::AddRow(), and FindList(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||||||
|
Definition at line 777 of file FuiManager.cpp. References CFuiPopupMenu::AddItem(), COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), and CFuiComponent::IsType(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||
|
Definition at line 791 of file FuiManager.cpp. References CFuiPopupMenu::AddSeparator(), COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), and CFuiComponent::IsType(). |
|
||||||||||||||||
|
Definition at line 1197 of file FuiManager.cpp. References CFuiGraph::ClearTracePoints(), and FindGraph(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||
|
Definition at line 1139 of file FuiManager.cpp. References CFuiList::ClearCellIcon(), and FindList(). |
|
||||||||||||||||||||
|
Definition at line 1131 of file FuiManager.cpp. References CFuiList::ClearCellText(), and FindList(). |
|
||||||||||||
|
Definition at line 1107 of file FuiManager.cpp. References CFuiList::ClearSelection(), and FindList(). |
|
||||||||||||
|
Definition at line 819 of file FuiManager.cpp. References CFuiPopupMenu::ClearItems(), COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), and CFuiComponent::IsType(). |
|
||||||||||||
|
Definition at line 1075 of file FuiManager.cpp. References CFuiList::CountSelectedRows(), and FindList(). |
|
||||||||||||||||
|
Create a new window based on a .WIN template file. This is the primary means for the application to open a new FUI window.
Definition at line 136 of file FuiManager.cpp. References EVENT_NOSUBEVENT, EVENT_OPENWINDOW, GenerateEventNotice(), and windowMap. Referenced by KeyGlobal(), open_window(), and toggle_window(). |
|
||||||||||||
|
Definition at line 1035 of file FuiManager.cpp. References CFuiList::DeleteAllColumns(), and FindList(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||
|
Definition at line 1067 of file FuiManager.cpp. References CFuiList::DeleteAllRows(), and FindList(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||
|
Definition at line 1027 of file FuiManager.cpp. References CFuiList::DeleteColumn(), and FindList(). |
|
||||||||||||||||
|
Definition at line 1059 of file FuiManager.cpp. References CFuiList::DeleteRow(), and FindList(). |
|
|
Destroy the window identified by the unique tag. Applications may call this function to destroy a window that they created; it may also be called by the FuiManager in response to the user clicking the Cancel, OK, or Close buttons
Definition at line 155 of file FuiManager.cpp. References CFuiWindow::Close(), EVENT_CLOSEWINDOW, EVENT_NOSUBEVENT, GenerateEventNotice(), and GetFuiWindow(). Referenced by close_window(), FileLoadEventNotify(), FileQuitEventNotify(), FileSaveAsEventNotify(), FileSaveEventNotify(), OptionsDateTimeNotify(), OptionsKeysButtonsNotify(), OptionsRealismNotify(), OptionsSceneryNotify(), OptionsSetupAxesNotify(), OptionsSoundsNotify(), OptionsStartupNotify(), OptionsTestControlsNotify(), and toggle_window(). |
|
|
Redraw all FUI components on the screen; this method is called on every screen refresh. Definition at line 183 of file FuiManager.cpp. References CFuiComponent::Draw(), CFuiWindow::Draw(), FUI_WINDOW_CLOSED, FUI_WINDOW_INIT, FUI_WINDOW_MOVE, FUI_WINDOW_OPEN, CTimeManager::GetElapsedSimTime(), CTimeManager::GetPauseState(), CFuiWindow::GetState(), globals, gtfo, CSlewManager::IsEnabled(), pause, SGlobals::screenHeight, SGlobals::screenWidth, CFuiTextPopup::SetText(), slew, SGlobals::slewmgr, SGlobals::timemgr, usermsg, userMsgActive, userMsgExpiry, and windowMap. Referenced by RedrawSimulation(). |
|
||||||||||||
|
Display an application-specified message to the user in a pop-up box for the specified time
Definition at line 337 of file FuiManager.cpp. References CTimeManager::GetElapsedSimTime(), globals, CFuiTextPopup::SetText(), SGlobals::timemgr, usermsg, userMsgActive, and userMsgExpiry. Referenced by DrawNoticeToUser(). |
|
||||||||||||
|
Definition at line 1316 of file FuiManager.cpp. References COMPONENT_CHECKBOX, FindComponent(), and CFuiComponent::IsType(). |
|
||||||||||||
|
Definition at line 1290 of file FuiManager.cpp. References CFuiWindow::GetComponent(), and GetFuiWindow(). Referenced by FindCheckbox(), FindGraph(), FindLabel(), FindList(), and FindSlider(). |
|
||||||||||||
|
Definition at line 1358 of file FuiManager.cpp. References COMPONENT_GRAPH, FindComponent(), and CFuiComponent::IsType(). Referenced by AddGraphTrace(), AddGraphTracePoint(), ClearGraphTracePoints(), GetGraphGridRange(), GetGraphGridSpacing(), RemoveAllGraphTraces(), RemoveGraphTrace(), SetGraphGridRange(), SetGraphGridSpacing(), SetGraphTraceColour(), SetGraphTraceRange(), SetGraphUseGrid(), SetGridBackColour(), and SetGridColour(). |
|
||||||||||||
|
Definition at line 1302 of file FuiManager.cpp. References COMPONENT_LABEL, FindComponent(), and CFuiComponent::IsType(). Referenced by SetLabelColour(). |
|
||||||||||||
|
Definition at line 1344 of file FuiManager.cpp. References COMPONENT_LIST, FindComponent(), and CFuiComponent::IsType(). Referenced by AddListColumn(), AddListRow(), ClearListCellIcon(), ClearListCellText(), ClearListSelection(), CountListSelectedRows(), DeleteAllListColumns(), DeleteAllListRows(), DeleteListColumn(), DeleteListRow(), GetListCellText(), GetListColumnCount(), GetListRowCount(), GetListSelectedRow(), ScrollListToColumn(), ScrollListToRow(), SelectListRow(), SetListCellIcon(), SetListCellText(), and SetListColumnWidth(). |
|
||||||||||||
|
Definition at line 1330 of file FuiManager.cpp. References COMPONENT_SLIDER, FindComponent(), and CFuiComponent::IsType(). Referenced by GetSliderDrawMajorTicks(), GetSliderDrawMinorTicks(), GetSliderMajorTickSpacing(), GetSliderMinorTickSpacing(), GetSliderSnapToTicks(), SetSliderDrawMajorTicks(), SetSliderDrawMinorTicks(), SetSliderLabel(), SetSliderMajorTickSpacing(), SetSliderMinorTickSpacing(), and SetSliderSnapToTicks(). |
|
||||||||||||
|
|
|
||||||||||||||||||||
|
Send event notification to the application callback. This is typically called by a FUI widget in response to some user action. Definition at line 320 of file FuiManager.cpp. References CFuiWindow::GenerateEventNotice(), and GetFuiWindow(). Referenced by CreateFuiWindow(), DestroyFuiWindow(), CFuiRadioButton::MouseStopClick(), CFuiCheckbox::MouseStopClick(), and CFuiButton::MouseStopClick(). |
|
||||||||||||
|
Definition at line 574 of file FuiManager.cpp. References COMPONENT_CHECKBOX, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiCheckbox::GetState(), and CFuiComponent::IsType(). |
|
|
Lookup the FUI component type for a widget with the given name.
Definition at line 545 of file FuiManager.cpp. References globals, SGlobals::logWarning, SFuiNameLookup::name, SFuiNameLookup::type, and CLogFile::Write(). |
|
|
Return a pointer to the window identified by the given tag. The window must be instantiated in the list of active FUI windows.
Definition at line 363 of file FuiManager.cpp. References windowMap. Referenced by AddPopupItem(), AddPopupSeperator(), ClearPopupItems(), DestroyFuiWindow(), FindComponent(), GenerateEventNotice(), GetCheckboxState(), GetPopupItemSelection(), GetRadioState(), GetTextLength(), GetTextMaxChars(), GetTextSelection(), GetTextText(), IsTextPassword(), RemovePopupItem(), SelectPopupItem(), SetCheckboxState(), SetComponentText(), SetGroupBoxLabel(), SetRadioState(), SetTextMaxChars(), SetTextSelection(), SetTextText(), SetWindowTitle(), and UseTextPassword(). |
|
||||||||||||||||||||||||||||
|
Definition at line 1267 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::GetGridRange(). |
|
||||||||||||||||||||
|
Definition at line 1276 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::GetGridSpacing(). |
|
||||||||||||||||||||||||
|
Definition at line 1147 of file FuiManager.cpp. References FindList(), and CFuiList::GetCellText(). |
|
||||||||||||
|
Definition at line 1007 of file FuiManager.cpp. References FindList(), and CFuiList::GetColumnCount(). |
|
||||||||||||
|
Definition at line 995 of file FuiManager.cpp. References FindList(), and CFuiList::GetRowCount(). |
|
||||||||||||||||
|
Definition at line 1087 of file FuiManager.cpp. References FindList(), and CFuiList::GetSelectedRow(). |
|
||||||||||||||||
|
Definition at line 847 of file FuiManager.cpp. References COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiPopupMenu::GetItemSelection(), and CFuiComponent::IsType(). |
|
||||||||||||
|
Definition at line 605 of file FuiManager.cpp. References COMPONENT_RADIOBUTTON, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiRadioButton::GetState(), and CFuiComponent::IsType(). Referenced by AircraftTeleportNotify(). |
|
||||||||||||
|
Definition at line 955 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::GetDrawMajorTicks(). |
|
||||||||||||
|
Definition at line 967 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::GetDrawMinorTicks(). |
|
||||||||||||
|
Definition at line 919 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::GetMajorTickSpacing(). |
|
||||||||||||
|
Definition at line 931 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::GetMinorTickSpacing(). |
|
||||||||||||
|
Definition at line 943 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::GetSnapToTicks(). |
|
||||||||||||
|
Definition at line 700 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiTextField::GetLength(), and CFuiComponent::IsType(). |
|
||||||||||||
|
Definition at line 650 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiTextField::GetMaxChars(), and CFuiComponent::IsType(). |
|
||||||||||||||||||||
|
Definition at line 763 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiTextField::GetSelection(), and CFuiComponent::IsType(). |
|
||||||||||||
|
Definition at line 732 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiTextField::GetText(), and CFuiComponent::IsType(). Referenced by AircraftTeleportNotify(). |
|
|
Return a pointer to the CFuiTheme identified by the given tag.
Definition at line 284 of file FuiManager.cpp. References themeMap. |
|
||||||||||||
|
||||||||||||
|
Definition at line 682 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiTextField::IsPassword(), and CFuiComponent::IsType(). |
|
|
Determine whether the window with the specified tag has been created
Definition at line 171 of file FuiManager.cpp. References windowMap. Referenced by close_window(), open_window(), and toggle_window(). |
|
||||||||||||
|
|
|
||||||||||||||||
|
Inform FUI of mouse button click action
Definition at line 402 of file FuiManager.cpp. References CFuiWindow::MouseClick(), and windowMap. Referenced by mouse(). |
|
||||||||||||
|
Inform FUI of mouse location
Definition at line 381 of file FuiManager.cpp. References CFuiWindow::MouseMove(), and windowMap. Referenced by motion(), and passive_motion(). |
|
||||||||||||||||
|
Inform FUI of mouse button release action
Definition at line 423 of file FuiManager.cpp. References CFuiWindow::MouseStopClick(), and windowMap. Referenced by mouse(). |
|
|
Dump FuiManager details to a file for debugging
Definition at line 474 of file FuiManager.cpp. References themeMap. Referenced by debug_dump_fui_cb(), and InitGlobalsWithPodFilesystem(). |
|
||||||||||||
|
Definition at line 1180 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::RemoveAllTraces(). |
|
||||||||||||||||
|
Definition at line 1172 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::RemoveTrace(). |
|
||||||||||||||||
|
Definition at line 805 of file FuiManager.cpp. References COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiPopupMenu::RemoveItem(). |
|
||||||||||||||||
|
Definition at line 987 of file FuiManager.cpp. References FindList(), and CFuiList::ScrollToColumn(). |
|
||||||||||||||||
|
Definition at line 979 of file FuiManager.cpp. References FindList(), and CFuiList::ScrollToRow(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||
|
Definition at line 1099 of file FuiManager.cpp. References FindList(), and CFuiList::SelectRow(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||
|
Definition at line 833 of file FuiManager.cpp. References COMPONENT_POPUPMENU, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiPopupMenu::SelectItem(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||
|
Definition at line 591 of file FuiManager.cpp. References COMPONENT_CHECKBOX, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiCheckbox::SetState(). |
|
||||||||||||||||
|
Set the text of a FUI widget.
Definition at line 444 of file FuiManager.cpp. References CFuiWindow::GetComponent(), GetFuiWindow(), and CFuiComponent::SetText(). Referenced by FileQuitEventNotify(), FrameRateNotify(), and TeleportAlertNotify(). |
|
||||||||||||||||||||||||||||
|
Definition at line 1231 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetGridRange(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||
|
Definition at line 1240 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetGridSpacing(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||
|
Definition at line 1214 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetTraceColour(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||||||||||||||
|
Definition at line 1205 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetTraceRange(). Referenced by FrameRateNotify(). |
|
||||||||||||||||
|
Definition at line 1223 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetUseGrid(). |
|
||||||||||||||||
|
Definition at line 1258 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetGridBackColour(). |
|
||||||||||||||||
|
Definition at line 1249 of file FuiManager.cpp. References FindGraph(), and CFuiGraph::SetGridColour(). |
|
||||||||||||||||
|
Definition at line 865 of file FuiManager.cpp. References COMPONENT_GROUPBOX, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiComponent::SetText(). |
|
||||||||||||||||
|
Definition at line 566 of file FuiManager.cpp. References FindLabel(), and CFuiLabel::SetColour(). Referenced by FrameRateNotify(). |
|
||||||||||||||||||||||||
|
Definition at line 1123 of file FuiManager.cpp. References FindList(), and CFuiList::SetCellIcon(). |
|
||||||||||||||||||||||||
|
Definition at line 1115 of file FuiManager.cpp. References FindList(), and CFuiList::SetCellText(). Referenced by TeleportDirectoryNotify(). |
|
||||||||||||||||||||
|
Definition at line 1043 of file FuiManager.cpp. References FindList(), and CFuiList::SetColumnWidth(). |
|
||||||||||||||||
|
Definition at line 622 of file FuiManager.cpp. References COMPONENT_RADIOBUTTON, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiRadioButton::SetState(). Referenced by AircraftTeleportNotify(). |
|
||||||||||||||||
|
Definition at line 903 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::SetDrawMajorTicks(). |
|
||||||||||||||||
|
Definition at line 911 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::SetDrawMinorTicks(). |
|
||||||||||||||||
|
Definition at line 1156 of file FuiManager.cpp. References FindSlider(), and CFuiComponent::SetText(). |
|
||||||||||||||||
|
Definition at line 879 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::SetMajorTickSpacing(). |
|
||||||||||||||||
|
Definition at line 887 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::SetMinorTickSpacing(). |
|
||||||||||||||||
|
Definition at line 895 of file FuiManager.cpp. References FindSlider(), and CFuiSlider::SetSnapToTicks(). |
|
||||||||||||||||
|
Definition at line 636 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiTextField::SetMaxChars(). |
|
||||||||||||||||||||
|
Definition at line 749 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiTextField::SetSelection(). |
|
||||||||||||||||
|
Definition at line 718 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiTextField::SetText(). Referenced by AircraftTeleportNotify(). |
|
||||||||||||
|
Set the title of an open FUI window
Definition at line 461 of file FuiManager.cpp. References GetFuiWindow(), and CFuiWindow::SetTitle(). Referenced by FileLoadEventNotify(), FileQuitEventNotify(), FileSaveAsEventNotify(), and FileSaveEventNotify(). |
|
||||||||||||||||
|
Definition at line 668 of file FuiManager.cpp. References COMPONENT_TEXTFIELD, CFuiWindow::GetComponent(), GetFuiWindow(), CFuiComponent::IsType(), and CFuiTextField::UsePassword(). |
|
|
Definition at line 1408 of file Fui.h. Referenced by CFuiManager(), Draw(), and ~CFuiManager(). |
|
|
Definition at line 1407 of file Fui.h. Referenced by CFuiManager(), Draw(), and ~CFuiManager(). |
|
|
Definition at line 1406 of file Fui.h. Referenced by CFuiManager(), GetTheme(), Print(), and ~CFuiManager(). |
|
|
Definition at line 1410 of file Fui.h. Referenced by CFuiManager(), Draw(), DrawNoticeToUser(), and ~CFuiManager(). |
|
|
Definition at line 1411 of file Fui.h. Referenced by Draw(), and DrawNoticeToUser(). |
|
|
Definition at line 1412 of file Fui.h. Referenced by Draw(), and DrawNoticeToUser(). |
|
|
Definition at line 1405 of file Fui.h. Referenced by CreateFuiWindow(), Draw(), GetFuiWindow(), IsWindowCreated(), MouseClick(), MouseMove(), and MouseStopClick(). |
|
|
Documentation generated by
|