| 
    KiCad PCB EDA Suite
    
   | 
 
Class that groups generic conditions for editor states. More...
#include <editor_conditions.h>
  
Public Member Functions | |
| EDITOR_CONDITIONS (EDA_BASE_FRAME *aFrame) | |
| Create an object to define conditions dependent upon a specific frame.   | |
| SELECTION_CONDITION | ContentModified () | 
| Create a functor that tests if the content of the frame is modified.   | |
| virtual SELECTION_CONDITION | UndoAvailable () | 
| Create a functor that tests if there are any items in the undo queue.   | |
| SELECTION_CONDITION | RedoAvailable () | 
| Create a functor that tests if there are any items in the redo queue.   | |
| SELECTION_CONDITION | Units (EDA_UNITS aUnit) | 
| Create a functor that tests if the frame has the specified units.   | |
| SELECTION_CONDITION | CurrentTool (const TOOL_ACTION &aTool) | 
| Create a functor testing if the specified tool is the current active tool in the frame.   | |
| SELECTION_CONDITION | NoActiveTool () | 
| Create a functor testing if there are no tools active in the frame.   | |
| SELECTION_CONDITION | GridVisible () | 
| Create a functor testing if the grid is visible in a frame.   | |
| SELECTION_CONDITION | GridOverrides () | 
| Create a functor testing if the grid overrides wires is enabled in a frame.   | |
| SELECTION_CONDITION | PolarCoordinates () | 
| Create a functor testing if polar coordinates are current being used.   | |
| SELECTION_CONDITION | CursorSmallCrosshairs () | 
| Create a functor testing if the cursor is full screen in a frame.   | |
| SELECTION_CONDITION | CursorFullCrosshairs () | 
| SELECTION_CONDITION | Cursor45Crosshairs () | 
| SELECTION_CONDITION | BoundingBoxes () | 
| SELECTION_CONDITION | ScriptingConsoleVisible () | 
| Create a functor testing if the python scripting console window is visible.   | |
Static Public Member Functions | |
| static bool | ShowAlways (const SELECTION &aSelection) | 
| The default condition function (always returns true).   | |
| static bool | ShowNever (const SELECTION &aSelection) | 
| Always returns false.   | |
| static bool | NotEmpty (const SELECTION &aSelection) | 
| Test if there are any items selected.   | |
| static bool | Empty (const SELECTION &aSelection) | 
| Test if there are no items selected.   | |
| static bool | Idle (const SELECTION &aSelection) | 
| Test if there no items selected or being edited.   | |
| static bool | IdleSelection (const SELECTION &aSelection) | 
| Test if all selected items are not being edited.   | |
| static SELECTION_CONDITION | HasType (KICAD_T aType) | 
| Create a functor that tests if among the selected items there is at least one of a given type.   | |
| static SELECTION_CONDITION | HasTypes (std::vector< KICAD_T > aTypes) | 
| Create a functor that tests if among the selected items there is at least one of a given types.   | |
| static SELECTION_CONDITION | OnlyTypes (std::vector< KICAD_T > aTypes) | 
| Create a functor that tests if the selected items are only of given types.   | |
| static SELECTION_CONDITION | Count (int aNumber) | 
| Create a functor that tests if the number of selected items is equal to the value given as parameter.   | |
| static SELECTION_CONDITION | MoreThan (int aNumber) | 
| Create a functor that tests if the number of selected items is greater than the value given as parameter.   | |
| static SELECTION_CONDITION | LessThan (int aNumber) | 
| Create a functor that tests if the number of selected items is smaller than the value given as parameter.   | |
Static Protected Member Functions | |
| static bool | contentModifiedFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame) | 
| Helper function used by ContentModified().   | |
| static bool | undoFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame) | 
| Helper function used by UndoAvailable().   | |
| static bool | redoFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame) | 
| Helper function used by RedoAvailable().   | |
| static bool | unitsFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame, EDA_UNITS aUnits) | 
| Helper function used by Units().   | |
| static bool | toolFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame, const TOOL_ACTION &aTool) | 
| Helper function used by CurrentTool().   | |
| static bool | noToolFunc (const SELECTION &aSelection, EDA_BASE_FRAME *aFrame) | 
| Helper function used by NoActiveTool().   | |
| static bool | gridFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame) | 
| Helper function used by GridVisible().   | |
| static bool | gridOverridesFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame) | 
| Helper function used by GridOverrides().   | |
| static bool | polarCoordFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame) | 
| Helper function used by PolarCoordinates().   | |
| static bool | cursorFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame, KIGFX::CROSS_HAIR_MODE aMode) | 
| Helper function used by FullscreenCursor().   | |
| static bool | bboxesFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame) | 
| Helper function used by DrawBoundingBoxes().   | |
| static bool | consoleVisibleFunc (const SELECTION &aSelection, EDA_DRAW_FRAME *aFrame) | 
| Helper function used by ScriptingConsoleVisible().   | |
Protected Attributes | |
| EDA_BASE_FRAME * | m_frame | 
| The frame to apply the conditions to.   | |
Static Private Member Functions | |
| static bool | hasTypeFunc (const SELECTION &aSelection, KICAD_T aType) | 
| Helper function used by HasType().   | |
| static bool | hasTypesFunc (const SELECTION &aSelection, std::vector< KICAD_T > aTypes) | 
| Helper function used by HasTypes().   | |
| static bool | onlyTypesFunc (const SELECTION &aSelection, std::vector< KICAD_T > aTypes) | 
| Helper function used by OnlyTypes().   | |
| static bool | countFunc (const SELECTION &aSelection, int aNumber) | 
| Helper function used by Count().   | |
| static bool | moreThanFunc (const SELECTION &aSelection, int aNumber) | 
| Helper function used by MoreThan().   | |
| static bool | lessThanFunc (const SELECTION &aSelection, int aNumber) | 
| Helper function used by LessThan().   | |
| static bool | orFunc (const SELECTION_CONDITION &aConditionA, const SELECTION_CONDITION &aConditionB, const SELECTION &aSelection) | 
| Helper function used by operator ||.   | |
| static bool | andFunc (const SELECTION_CONDITION &aConditionA, const SELECTION_CONDITION &aConditionB, const SELECTION &aSelection) | 
| Helper function used by operator &&.   | |
| static bool | notFunc (const SELECTION_CONDITION &aCondition, const SELECTION &aSelection) | 
| Helper function used by operator !.   | |
| static bool | orBoolFunc (const SELECTION_CONDITION &aConditionA, SELECTION_BOOL &aConditionB, const SELECTION &aSelection) | 
| Helper function used by operator ||.   | |
| static bool | andBoolFunc (const SELECTION_CONDITION &aConditionA, SELECTION_BOOL &aConditionB, const SELECTION &aSelection) | 
| Helper function used by operator &&.   | |
Class that groups generic conditions for editor states.
Definition at line 45 of file editor_conditions.h.
      
  | 
  inline | 
Create an object to define conditions dependent upon a specific frame.
| aFrame | is the frame to query for the conditions | 
Definition at line 53 of file editor_conditions.h.
References m_frame.
Referenced by PCB_EDITOR_CONDITIONS::PCB_EDITOR_CONDITIONS(), and SCH_EDITOR_CONDITIONS::SCH_EDITOR_CONDITIONS().
      
  | 
  inlinestaticprivateinherited | 
Helper function used by operator &&.
Definition at line 202 of file selection_conditions.h.
Referenced by operator&&.
      
  | 
  inlinestaticprivateinherited | 
Helper function used by operator &&.
Definition at line 182 of file selection_conditions.h.
Referenced by operator&&.
      
  | 
  staticprotected | 
Helper function used by DrawBoundingBoxes().
Definition at line 226 of file editor_conditions.cpp.
References EDA_DRAW_FRAME::GetCanvas(), KIGFX::RENDER_SETTINGS::GetDrawBoundingBoxes(), KIGFX::VIEW::GetPainter(), KIGFX::PAINTER::GetSettings(), and EDA_DRAW_PANEL_GAL::GetView().
Referenced by BoundingBoxes().
| SELECTION_CONDITION EDITOR_CONDITIONS::BoundingBoxes | ( | ) | 
Definition at line 143 of file editor_conditions.cpp.
References bboxesFunc(), and m_frame.
Referenced by FOOTPRINT_EDIT_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by ScriptingConsoleVisible().
Definition at line 232 of file editor_conditions.cpp.
References EDA_DRAW_FRAME::IsScriptingConsoleVisible().
Referenced by ScriptingConsoleVisible().
| SELECTION_CONDITION EDITOR_CONDITIONS::ContentModified | ( | ) | 
Create a functor that tests if the content of the frame is modified.
Definition at line 41 of file editor_conditions.cpp.
References contentModifiedFunc(), and m_frame.
Referenced by CVPCB_MAINFRAME::setupUIConditions(), and FOOTPRINT_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by ContentModified().
Definition at line 163 of file editor_conditions.cpp.
References EDA_BASE_FRAME::IsContentModified().
Referenced by ContentModified().
      
  | 
  staticinherited | 
Create a functor that tests if the number of selected items is equal to the value given as parameter.
| aNumber | is the number of expected items. | 
Definition at line 79 of file selection_conditions.cpp.
References countFunc().
Referenced by CONVERT_TOOL::Init(), EDIT_TOOL::Init(), PAD_TOOL::Init(), PCB_POINT_EDITOR::Init(), PCB_SELECTION_TOOL::Init(), SCH_POINT_EDITOR::Init(), SCH_SELECTION_TOOL::Init(), SYMBOL_EDITOR_EDIT_TOOL::Init(), SYMBOL_EDITOR_PIN_TOOL::Init(), makeShapeModificationMenu(), and PCB_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprivateinherited | 
Helper function used by Count().
Definition at line 142 of file selection_conditions.cpp.
References SELECTION::Size().
Referenced by Count().
| SELECTION_CONDITION EDITOR_CONDITIONS::CurrentTool | ( | const TOOL_ACTION & | aTool | ) | 
Create a functor testing if the specified tool is the current active tool in the frame.
Definition at line 65 of file editor_conditions.cpp.
References m_frame, and toolFunc().
Referenced by DISPLAY_FOOTPRINTS_FRAME::setupUIConditions(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), GERBVIEW_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
| SELECTION_CONDITION EDITOR_CONDITIONS::Cursor45Crosshairs | ( | ) | 
Definition at line 132 of file editor_conditions.cpp.
References cursorFunc(), KIGFX::FULLSCREEN_DIAGONAL, and m_frame.
Referenced by FOOTPRINT_CHOOSER_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), and GERBVIEW_FRAME::setupUIConditions().
| SELECTION_CONDITION EDITOR_CONDITIONS::CursorFullCrosshairs | ( | ) | 
Definition at line 121 of file editor_conditions.cpp.
References cursorFunc(), KIGFX::FULLSCREEN_CROSS, and m_frame.
Referenced by FOOTPRINT_CHOOSER_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), and GERBVIEW_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by FullscreenCursor().
Definition at line 219 of file editor_conditions.cpp.
References KIGFX::GAL_DISPLAY_OPTIONS::GetCursorMode(), and EDA_DRAW_FRAME::GetGalDisplayOptions().
Referenced by Cursor45Crosshairs(), CursorFullCrosshairs(), and CursorSmallCrosshairs().
| SELECTION_CONDITION EDITOR_CONDITIONS::CursorSmallCrosshairs | ( | ) | 
Create a functor testing if the cursor is full screen in a frame.
Definition at line 110 of file editor_conditions.cpp.
References cursorFunc(), m_frame, and KIGFX::SMALL_CROSS.
Referenced by FOOTPRINT_CHOOSER_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), and GERBVIEW_FRAME::setupUIConditions().
      
  | 
  staticinherited | 
Test if there are no items selected.
Definition at line 41 of file selection_conditions.cpp.
References SELECTION::Empty().
Referenced by PL_SELECTION_TOOL::Init(), and SCH_SELECTION_TOOL::Init().
      
  | 
  staticprotected | 
Helper function used by GridVisible().
Definition at line 201 of file editor_conditions.cpp.
References EDA_DRAW_FRAME::IsGridVisible().
Referenced by GridVisible().
| SELECTION_CONDITION EDITOR_CONDITIONS::GridOverrides | ( | ) | 
Create a functor testing if the grid overrides wires is enabled in a frame.
Definition at line 88 of file editor_conditions.cpp.
References gridOverridesFunc(), and m_frame.
Referenced by FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by GridOverrides().
Definition at line 207 of file editor_conditions.cpp.
References EDA_DRAW_FRAME::IsGridOverridden().
Referenced by GridOverrides().
| SELECTION_CONDITION EDITOR_CONDITIONS::GridVisible | ( | ) | 
Create a functor testing if the grid is visible in a frame.
Definition at line 77 of file editor_conditions.cpp.
References gridFunc(), and m_frame.
Referenced by DISPLAY_FOOTPRINTS_FRAME::setupUIConditions(), FOOTPRINT_CHOOSER_FRAME::setupUIConditions(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), FOOTPRINT_VIEWER_FRAME::setupUIConditions(), GERBVIEW_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), SYMBOL_EDIT_FRAME::setupUIConditions(), and SYMBOL_VIEWER_FRAME::setupUIConditions().
      
  | 
  staticinherited | 
Create a functor that tests if among the selected items there is at least one of a given type.
| aType | is the type that is searched. | 
Definition at line 61 of file selection_conditions.cpp.
References hasTypeFunc().
Referenced by EDIT_TOOL::Init(), PAD_TOOL::Init(), PCB_SELECTION_TOOL::Init(), SCH_SELECTION_TOOL::Init(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), and SCH_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprivateinherited | 
Helper function used by HasType().
Definition at line 97 of file selection_conditions.cpp.
References SELECTION::Empty().
Referenced by HasType().
      
  | 
  staticinherited | 
Create a functor that tests if among the selected items there is at least one of a given types.
| aTypes | is an array containing types that are searched. | 
Definition at line 67 of file selection_conditions.cpp.
References hasTypesFunc().
Referenced by EDIT_TOOL::Init(), SCH_SELECTION_TOOL::Init(), makeShapeModificationMenu(), and PCB_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprivateinherited | 
Helper function used by HasTypes().
Definition at line 112 of file selection_conditions.cpp.
References SELECTION::Empty().
Referenced by HasTypes().
      
  | 
  staticinherited | 
Test if there no items selected or being edited.
Definition at line 47 of file selection_conditions.cpp.
References SELECTION::Front(), IS_MOVING, IS_NEW, and IS_PASTED.
Referenced by EDIT_TABLE_TOOL_BASE< T_TABLE, T_TABLECELL, T_COMMIT >::addMenus(), SCH_INSPECTION_TOOL::Init(), SCH_LINE_WIRE_BUS_TOOL::Init(), SCH_SELECTION_TOOL::Init(), SYMBOL_EDITOR_EDIT_TOOL::Init(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticinherited | 
Test if all selected items are not being edited.
Definition at line 55 of file selection_conditions.cpp.
References SELECTION::Front(), and EDA_ITEM::GetEditFlags().
Referenced by SYMBOL_EDITOR_EDIT_TOOL::Init(), and SYMBOL_EDITOR_MOVE_TOOL::Init().
      
  | 
  staticinherited | 
Create a functor that tests if the number of selected items is smaller than the value given as parameter.
| aNumber | is the number used for comparison. | 
Definition at line 91 of file selection_conditions.cpp.
References lessThanFunc().
Referenced by SCH_SELECTION_TOOL::Init().
      
  | 
  staticprivateinherited | 
Helper function used by LessThan().
Definition at line 154 of file selection_conditions.cpp.
References SELECTION::Size().
Referenced by LessThan().
      
  | 
  staticinherited | 
Create a functor that tests if the number of selected items is greater than the value given as parameter.
| aNumber | is the number used for comparison. | 
Definition at line 85 of file selection_conditions.cpp.
References moreThanFunc().
Referenced by EDIT_TABLE_TOOL_BASE< T_TABLE, T_TABLECELL, T_COMMIT >::addMenus(), ALIGN_DISTRIBUTE_TOOL::Init(), CONVERT_TOOL::Init(), EDIT_TOOL::Init(), PCB_SELECTION_TOOL::Init(), SCH_ALIGN_TOOL::Init(), SCH_LINE_WIRE_BUS_TOOL::Init(), SCH_SELECTION_TOOL::Init(), SYMBOL_EDITOR_EDIT_TOOL::Init(), makeShapeModificationMenu(), PCB_EDIT_FRAME::setupUIConditions(), and SCH_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprivateinherited | 
Helper function used by MoreThan().
Definition at line 148 of file selection_conditions.cpp.
References SELECTION::Size().
Referenced by MoreThan().
| SELECTION_CONDITION EDITOR_CONDITIONS::NoActiveTool | ( | ) | 
Create a functor testing if there are no tools active in the frame.
Definition at line 71 of file editor_conditions.cpp.
References m_frame, and noToolFunc().
Referenced by FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticinherited | 
Test if there are any items selected.
Definition at line 35 of file selection_conditions.cpp.
References SELECTION::Empty().
Referenced by BOARD_EDITOR_CONTROL::Init(), EDIT_TOOL::Init(), GROUP_TOOL::Init(), PCB_SELECTION_TOOL::Init(), PL_EDIT_TOOL::Init(), ROUTER_TOOL::Init(), SYMBOL_EDITOR_EDIT_TOOL::Init(), makePositioningToolsMenu(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), and SCH_EDIT_FRAME::setupUIConditions().
      
  | 
  inlinestaticprivateinherited | 
Helper function used by operator !.
Definition at line 189 of file selection_conditions.h.
Referenced by operator!.
      
  | 
  staticprotected | 
Helper function used by NoActiveTool().
Definition at line 195 of file editor_conditions.cpp.
References TOOLS_HOLDER::ToolStackIsEmpty().
Referenced by NoActiveTool().
      
  | 
  staticinherited | 
Create a functor that tests if the selected items are only of given types.
| aTypes | is an array containing types that are searched. | 
Definition at line 73 of file selection_conditions.cpp.
References onlyTypesFunc().
Referenced by EDIT_TABLE_TOOL_BASE< T_TABLE, T_TABLECELL, T_COMMIT >::addMenus(), EDIT_TOOL::DeleteItems(), BOARD_EDITOR_CONTROL::Init(), CONVERT_TOOL::Init(), EDIT_TOOL::Init(), PAD_TOOL::Init(), PCB_SELECTION_TOOL::Init(), SCH_LINE_WIRE_BUS_TOOL::Init(), SCH_MOVE_TOOL::Init(), SCH_SELECTION_TOOL::Init(), SYMBOL_EDITOR_EDIT_TOOL::Init(), SYMBOL_EDITOR_PIN_TOOL::Init(), PCB_SELECTION_TOOL::Main(), makeShapeModificationMenu(), EDIT_TOOL::Properties(), SCH_EDIT_TOOL::Properties(), PCB_EDIT_FRAME::setupUIConditions(), BOARD_EDITOR_CONTROL::TrackWidthDec(), BOARD_EDITOR_CONTROL::TrackWidthInc(), BOARD_EDITOR_CONTROL::ViaSizeDec(), and BOARD_EDITOR_CONTROL::ViaSizeInc().
      
  | 
  staticprivateinherited | 
Helper function used by OnlyTypes().
Definition at line 127 of file selection_conditions.cpp.
References SELECTION::Empty().
Referenced by OnlyTypes().
      
  | 
  inlinestaticprivateinherited | 
Helper function used by operator ||.
Definition at line 195 of file selection_conditions.h.
Referenced by operator||.
      
  | 
  inlinestaticprivateinherited | 
Helper function used by operator ||.
Definition at line 175 of file selection_conditions.h.
Referenced by operator||.
      
  | 
  staticprotected | 
Helper function used by PolarCoordinates().
Definition at line 213 of file editor_conditions.cpp.
References EDA_DRAW_FRAME::GetShowPolarCoords().
Referenced by PolarCoordinates().
| SELECTION_CONDITION EDITOR_CONDITIONS::PolarCoordinates | ( | ) | 
Create a functor testing if polar coordinates are current being used.
Definition at line 99 of file editor_conditions.cpp.
References m_frame, and polarCoordFunc().
Referenced by GERBVIEW_FRAME::setupUIConditions(), and PCB_EDIT_FRAME::setupUIConditions().
| SELECTION_CONDITION EDITOR_CONDITIONS::RedoAvailable | ( | ) | 
Create a functor that tests if there are any items in the redo queue.
Definition at line 53 of file editor_conditions.cpp.
References m_frame, and redoFunc().
Referenced by CVPCB_MAINFRAME::setupUIConditions(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by RedoAvailable().
Definition at line 175 of file editor_conditions.cpp.
References EDA_BASE_FRAME::GetRedoCommandCount().
Referenced by RedoAvailable().
| SELECTION_CONDITION EDITOR_CONDITIONS::ScriptingConsoleVisible | ( | ) | 
Create a functor testing if the python scripting console window is visible.
Definition at line 153 of file editor_conditions.cpp.
References consoleVisibleFunc(), and m_frame.
Referenced by PCB_EDIT_FRAME::setupUIConditions().
      
  | 
  inlinestaticinherited | 
The default condition function (always returns true).
Definition at line 75 of file selection_conditions.h.
Referenced by ACTION_CONDITIONS::ACTION_CONDITIONS(), DESIGN_BLOCK_CONTROL::AddContextMenuItems(), LIBRARY_EDITOR_CONTROL::AddContextMenuItems(), CONDITIONAL_MENU::AddSeparator(), EDA_DRAW_FRAME::AddStandardSubMenus(), EDA_3D_CONTROLLER::Init(), FOOTPRINT_CHOOSER_SELECTION_TOOL::Init(), FOOTPRINT_EDITOR_CONTROL::Init(), GENERATOR_TOOL::Init(), PAD_TOOL::Init(), PCB_PICKER_TOOL::Init(), PCB_TOOL_BASE::Init(), PICKER_TOOL::Init(), PL_DRAWING_TOOLS::Init(), PL_EDIT_TOOL::Init(), ROUTER_TOOL::Init(), SCH_LINE_WIRE_BUS_TOOL::Init(), SCH_TOOL_BASE< T >::Init(), ZOOM_TOOL::Init(), LOCK_CONTEXT_MENU::LOCK_CONTEXT_MENU(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), PCB_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), SCH_EDIT_FRAME::setupUIConditions(), SIMULATOR_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  inlinestaticinherited | 
Always returns false.
Definition at line 80 of file selection_conditions.h.
Referenced by ACTION_CONDITIONS::ACTION_CONDITIONS(), KICAD_MANAGER_FRAME::setupUIConditions(), and PL_EDITOR_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by CurrentTool().
Definition at line 188 of file editor_conditions.cpp.
References TOOLS_HOLDER::IsCurrentTool().
Referenced by CurrentTool().
      
  | 
  virtual | 
Create a functor that tests if there are any items in the undo queue.
Definition at line 47 of file editor_conditions.cpp.
References m_frame, and undoFunc().
Referenced by CVPCB_MAINFRAME::setupUIConditions(), FOOTPRINT_EDIT_FRAME::setupUIConditions(), PL_EDITOR_FRAME::setupUIConditions(), and SYMBOL_EDIT_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by UndoAvailable().
Definition at line 169 of file editor_conditions.cpp.
References EDA_BASE_FRAME::GetUndoCommandCount().
Referenced by UndoAvailable().
| SELECTION_CONDITION EDITOR_CONDITIONS::Units | ( | EDA_UNITS | aUnit | ) | 
Create a functor that tests if the frame has the specified units.
Definition at line 59 of file editor_conditions.cpp.
References m_frame, and unitsFunc().
Referenced by FOOTPRINT_CHOOSER_FRAME::setupUIConditions(), and FOOTPRINT_VIEWER_FRAME::setupUIConditions().
      
  | 
  staticprotected | 
Helper function used by Units().
Definition at line 181 of file editor_conditions.cpp.
References UNITS_PROVIDER::GetUserUnits().
Referenced by Units().
      
  | 
  protected | 
The frame to apply the conditions to.
Definition at line 188 of file editor_conditions.h.
Referenced by BoundingBoxes(), ContentModified(), CurrentTool(), Cursor45Crosshairs(), CursorFullCrosshairs(), CursorSmallCrosshairs(), EDITOR_CONDITIONS(), PCB_EDITOR_CONDITIONS::FootprintViewerAutoZoom(), PCB_EDITOR_CONDITIONS::GraphicsFillDisplay(), GridOverrides(), GridVisible(), PCB_EDITOR_CONDITIONS::HasItems(), SCH_EDITOR_CONDITIONS::LineMode(), NoActiveTool(), PCB_EDITOR_CONDITIONS::PadFillDisplay(), PCB_EDITOR_CONDITIONS::PadNumbersDisplay(), PolarCoordinates(), RedoAvailable(), ScriptingConsoleVisible(), PCB_EDITOR_CONDITIONS::TextFillDisplay(), PCB_EDITOR_CONDITIONS::TrackFillDisplay(), UndoAvailable(), Units(), PCB_EDITOR_CONDITIONS::ViaFillDisplay(), and PCB_EDITOR_CONDITIONS::ZoneDisplayMode().