| 
    KiCad PCB EDA Suite
    
   | 
 
#include <bitmap2cmp_panel.h>
  
Public Member Functions | |
| BITMAP2CMP_PANEL (BITMAP2CMP_FRAME *aParent) | |
| ~BITMAP2CMP_PANEL () | |
| bool | OpenProjectFiles (const std::vector< wxString > &aFilenames, int aCtl=0) | 
| void | OnLoadFile (wxCommandEvent &event) override | 
| void | LoadSettings (BITMAP2CMP_SETTINGS *aCfg) | 
| void | SaveSettings (BITMAP2CMP_SETTINGS *aCfg) | 
| wxWindow * | GetCurrentPage () | 
| IMAGE_SIZE | GetOutputSizeX () const | 
| IMAGE_SIZE | GetOutputSizeY () const | 
| void | SetOutputSize (const IMAGE_SIZE &aSizeX, const IMAGE_SIZE &aSizeY) | 
| void | ExportToBuffer (std::string &aOutput, OUTPUT_FMT_ID aFormat) | 
| generate a export data of the current bitmap.   | |
Protected Attributes | |
| wxNotebook * | m_Notebook | 
| wxScrolledWindow * | m_InitialPicturePanel | 
| wxScrolledWindow * | m_GreyscalePicturePanel | 
| wxScrolledWindow * | m_BNPicturePanel | 
| wxStaticText * | m_staticTextISize | 
| wxStaticText * | m_SizeXValue | 
| wxStaticText * | m_SizeYValue | 
| wxStaticText * | m_SizePixUnits | 
| wxStaticText * | m_staticTextDPI | 
| wxStaticText * | m_InputXValueDPI | 
| wxStaticText * | m_InputYValueDPI | 
| wxStaticText * | m_DPIUnit | 
| wxStaticText * | m_staticTextBPP | 
| wxStaticText * | m_BPPValue | 
| wxStaticText * | m_BPPunits | 
| wxButton * | m_buttonLoad | 
| wxTextCtrl * | m_UnitSizeX | 
| wxTextCtrl * | m_UnitSizeY | 
| wxChoice * | m_PixelUnit | 
| wxCheckBox * | m_aspectRatioCheckbox | 
| wxStaticText * | m_ThresholdText | 
| wxSlider * | m_sliderThreshold | 
| wxCheckBox * | m_checkNegative | 
| wxRadioButton * | m_rbSymbol | 
| wxRadioButton * | m_rbFootprint | 
| wxStaticText * | m_layerLabel | 
| wxChoice * | m_layerCtrl | 
| wxRadioButton * | m_rbPostscript | 
| wxRadioButton * | m_rbWorksheet | 
| wxButton * | m_buttonExportFile | 
| wxButton * | m_buttonExportClipboard | 
Private Member Functions | |
| void | OnPaintInit (wxPaintEvent &event) override | 
| void | OnPaintGreyscale (wxPaintEvent &event) override | 
| void | OnPaintBW (wxPaintEvent &event) override | 
| void | OnExportToFile (wxCommandEvent &event) override | 
| void | OnExportToClipboard (wxCommandEvent &event) override | 
| void | OnFormatChange (wxCommandEvent &event) override | 
| void | OnNegativeClicked (wxCommandEvent &event) override | 
| void | OnThresholdChange (wxScrollEvent &event) override | 
| void | OnSizeChangeX (wxCommandEvent &event) override | 
| void | OnSizeChangeY (wxCommandEvent &event) override | 
| void | OnSizeUnitChange (wxCommandEvent &event) override | 
| void | ToggleAspectRatioLock (wxCommandEvent &event) override | 
| OUTPUT_FMT_ID | getOutputFormat () | 
| EDA_UNITS | getUnitFromSelection () | 
| wxString | formatOutputSize (double aSize) | 
| void | binarize (double aThreshold) | 
| void | negateGreyscaleImage () | 
| void | updateImageInfo () | 
Private Attributes | |
| BITMAP2CMP_FRAME * | m_parentFrame | 
| wxImage | m_Pict_Image | 
| wxBitmap | m_Pict_Bitmap | 
| wxImage | m_Greyscale_Image | 
| wxBitmap | m_Greyscale_Bitmap | 
| wxImage | m_NB_Image | 
| wxBitmap | m_BN_Bitmap | 
| IMAGE_SIZE | m_outputSizeX | 
| IMAGE_SIZE | m_outputSizeY | 
| bool | m_negative | 
| double | m_aspectRatio | 
| wxStaticText * | m_sizeLabel | 
Definition at line 68 of file bitmap2cmp_panel.h.
| BITMAP2CMP_PANEL::BITMAP2CMP_PANEL | ( | BITMAP2CMP_FRAME * | aParent | ) | 
Definition at line 46 of file bitmap2cmp_panel.cpp.
References _, BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), formatOutputSize(), getUnitFromSelection(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_BNPicturePanel, BITMAP2CMP_PANEL_BASE::m_buttonExportClipboard, BITMAP2CMP_PANEL_BASE::m_buttonExportFile, BITMAP2CMP_PANEL_BASE::m_GreyscalePicturePanel, BITMAP2CMP_PANEL_BASE::m_InitialPicturePanel, m_negative, m_outputSizeX, m_outputSizeY, m_parentFrame, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, and BITMAP2CMP_PANEL_BASE::m_UnitSizeY.
      
  | 
  inline | 
Definition at line 72 of file bitmap2cmp_panel.h.
      
  | 
  private | 
Definition at line 404 of file bitmap2cmp_panel.cpp.
References m_BN_Bitmap, m_Greyscale_Image, and m_NB_Image.
Referenced by OnNegativeClicked(), OnThresholdChange(), and OpenProjectFiles().
| void BITMAP2CMP_PANEL::ExportToBuffer | ( | std::string & | aOutput, | 
| OUTPUT_FMT_ID | aFormat ) | 
generate a export data of the current bitmap.
| aOutput | is a string buffer to fill with data | 
| aFormat | is the format to generate | 
Definition at line 516 of file bitmap2cmp_panel.cpp.
References _, BITMAPCONV_INFO::ConvertBitmap(), FOOTPRINT_FMT, WX_STRING_REPORTER::GetMessages(), REPORTER::HasMessage(), BITMAP2CMP_PANEL_BASE::m_layerCtrl, m_NB_Image, m_outputSizeX, and m_outputSizeY.
Referenced by OnExportToClipboard().
      
  | 
  private | 
Definition at line 272 of file bitmap2cmp_panel.cpp.
References getUnitFromSelection(), INCH, KiROUND(), MM, and text.
Referenced by BITMAP2CMP_PANEL(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
| wxWindow * BITMAP2CMP_PANEL::GetCurrentPage | ( | ) | 
Definition at line 71 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_Notebook.
      
  | 
  private | 
Definition at line 479 of file bitmap2cmp_panel.cpp.
References DRAWING_SHEET_FMT, FOOTPRINT_FMT, BITMAP2CMP_PANEL_BASE::m_rbPostscript, BITMAP2CMP_PANEL_BASE::m_rbSymbol, BITMAP2CMP_PANEL_BASE::m_rbWorksheet, POSTSCRIPT_FMT, and SYMBOL_FMT.
Referenced by OnExportToClipboard(), OnExportToFile(), and SaveSettings().
      
  | 
  inline | 
Definition at line 83 of file bitmap2cmp_panel.h.
References m_outputSizeX.
      
  | 
  inline | 
Definition at line 84 of file bitmap2cmp_panel.h.
References m_outputSizeY.
      
  | 
  private | 
Definition at line 300 of file bitmap2cmp_panel.cpp.
References INCH, BITMAP2CMP_PANEL_BASE::m_PixelUnit, MM, and UNSCALED.
Referenced by BITMAP2CMP_PANEL(), formatOutputSize(), OnSizeChangeX(), OnSizeChangeY(), and OnSizeUnitChange().
| void BITMAP2CMP_PANEL::LoadSettings | ( | BITMAP2CMP_SETTINGS * | aCfg | ) | 
Definition at line 77 of file bitmap2cmp_panel.cpp.
References DRAWING_SHEET_FMT, FOOTPRINT_FMT, m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, BITMAP2CMP_PANEL_BASE::m_checkNegative, BITMAP2CMP_SETTINGS::m_LastFormat, BITMAP2CMP_SETTINGS::m_LastLayer, BITMAP2CMP_PANEL_BASE::m_layerCtrl, BITMAP2CMP_PANEL_BASE::m_layerLabel, BITMAP2CMP_SETTINGS::m_Negative, m_negative, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_rbFootprint, BITMAP2CMP_PANEL_BASE::m_rbPostscript, BITMAP2CMP_PANEL_BASE::m_rbSymbol, BITMAP2CMP_PANEL_BASE::m_rbWorksheet, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, BITMAP2CMP_SETTINGS::m_Threshold, BITMAP2CMP_SETTINGS::m_Units, POSTSCRIPT_FMT, SYMBOL_FMT, and SYMBOL_PASTE_FMT.
      
  | 
  private | 
Definition at line 430 of file bitmap2cmp_panel.cpp.
References m_Greyscale_Image.
Referenced by OnNegativeClicked(), and OpenProjectFiles().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 492 of file bitmap2cmp_panel.cpp.
References _, ExportToBuffer(), getOutputFormat(), SYMBOL_FMT, and SYMBOL_PASTE_FMT.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 466 of file bitmap2cmp_panel.cpp.
References DRAWING_SHEET_FMT, FOOTPRINT_FMT, getOutputFormat(), m_parentFrame, POSTSCRIPT_FMT, SYMBOL_FMT, and SYMBOL_PASTE_FMT.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 567 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_layerCtrl, BITMAP2CMP_PANEL_BASE::m_layerLabel, and BITMAP2CMP_PANEL_BASE::m_rbFootprint.
      
  | 
  overridevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 174 of file bitmap2cmp_panel.cpp.
References m_parentFrame.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 444 of file bitmap2cmp_panel.cpp.
References binarize(), BITMAP2CMP_PANEL_BASE::m_checkNegative, m_Greyscale_Bitmap, m_Greyscale_Image, m_negative, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, negateGreyscaleImage(), and Refresh().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 156 of file bitmap2cmp_panel.cpp.
References m_BN_Bitmap, and BITMAP2CMP_PANEL_BASE::m_BNPicturePanel.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 137 of file bitmap2cmp_panel.cpp.
References m_Greyscale_Bitmap, and BITMAP2CMP_PANEL_BASE::m_GreyscalePicturePanel.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 118 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_InitialPicturePanel, and m_Pict_Bitmap.
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 313 of file bitmap2cmp_panel.cpp.
References formatOutputSize(), getUnitFromSelection(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, UNSCALED, and updateImageInfo().
Referenced by OpenProjectFiles(), and ToggleAspectRatioLock().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 342 of file bitmap2cmp_panel.cpp.
References formatOutputSize(), getUnitFromSelection(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, UNSCALED, and updateImageInfo().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 371 of file bitmap2cmp_panel.cpp.
References formatOutputSize(), getUnitFromSelection(), m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, and updateImageInfo().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 459 of file bitmap2cmp_panel.cpp.
References binarize(), BITMAP2CMP_PANEL_BASE::m_sliderThreshold, and Refresh().
| bool BITMAP2CMP_PANEL::OpenProjectFiles | ( | const std::vector< wxString > & | aFilenames, | 
| int | aCtl = 0 ) | 
Definition at line 180 of file bitmap2cmp_panel.cpp.
References binarize(), DEFAULT_DPI, dummy, formatOutputSize(), KiROUND(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_BNPicturePanel, BITMAP2CMP_PANEL_BASE::m_buttonExportClipboard, BITMAP2CMP_PANEL_BASE::m_buttonExportFile, m_Greyscale_Bitmap, m_Greyscale_Image, BITMAP2CMP_PANEL_BASE::m_GreyscalePicturePanel, BITMAP2CMP_PANEL_BASE::m_InitialPicturePanel, BITMAP2CMP_PANEL_BASE::m_InputXValueDPI, BITMAP2CMP_PANEL_BASE::m_InputYValueDPI, m_NB_Image, m_negative, m_outputSizeX, m_outputSizeY, m_Pict_Bitmap, m_Pict_Image, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, negateGreyscaleImage(), OnSizeChangeX(), and updateImageInfo().
| void BITMAP2CMP_PANEL::SaveSettings | ( | BITMAP2CMP_SETTINGS * | aCfg | ) | 
Definition at line 108 of file bitmap2cmp_panel.cpp.
References getOutputFormat(), BITMAP2CMP_PANEL_BASE::m_checkNegative, BITMAP2CMP_SETTINGS::m_LastFormat, BITMAP2CMP_SETTINGS::m_LastLayer, BITMAP2CMP_PANEL_BASE::m_layerCtrl, BITMAP2CMP_SETTINGS::m_Negative, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, BITMAP2CMP_SETTINGS::m_Threshold, and BITMAP2CMP_SETTINGS::m_Units.
| void BITMAP2CMP_PANEL::SetOutputSize | ( | const IMAGE_SIZE & | aSizeX, | 
| const IMAGE_SIZE & | aSizeY ) | 
Definition at line 382 of file bitmap2cmp_panel.cpp.
References formatOutputSize(), m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, and updateImageInfo().
      
  | 
  overrideprivatevirtual | 
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 393 of file bitmap2cmp_panel.cpp.
References dummy, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, and OnSizeChangeX().
      
  | 
  private | 
Definition at line 286 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_BPPValue, m_Pict_Bitmap, BITMAP2CMP_PANEL_BASE::m_SizeXValue, and BITMAP2CMP_PANEL_BASE::m_SizeYValue.
Referenced by OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
      
  | 
  private | 
Definition at line 135 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), LoadSettings(), OnSizeChangeX(), OnSizeChangeY(), and OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 65 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::OnSizeChangeX(), BITMAP2CMP_PANEL::OnSizeChangeY(), BITMAP2CMP_PANEL::ToggleAspectRatioLock(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  private | 
Definition at line 131 of file bitmap2cmp_panel.h.
Referenced by binarize(), and OnPaintBW().
      
  | 
  protectedinherited | 
Definition at line 49 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OnPaintBW(), BITMAP2CMP_PANEL::OpenProjectFiles(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 60 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 59 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::updateImageInfo().
      
  | 
  protectedinherited | 
Definition at line 76 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OpenProjectFiles(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 75 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OpenProjectFiles(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 61 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 68 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::OnNegativeClicked(), BITMAP2CMP_PANEL::SaveSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 57 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  private | 
Definition at line 129 of file bitmap2cmp_panel.h.
Referenced by OnNegativeClicked(), OnPaintGreyscale(), and OpenProjectFiles().
      
  | 
  private | 
Definition at line 128 of file bitmap2cmp_panel.h.
Referenced by binarize(), negateGreyscaleImage(), OnNegativeClicked(), and OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 48 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OnPaintGreyscale(), BITMAP2CMP_PANEL::OpenProjectFiles(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 47 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OnPaintInit(), BITMAP2CMP_PANEL::OpenProjectFiles(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 55 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 56 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 72 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::ExportToBuffer(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::OnFormatChange(), and BITMAP2CMP_PANEL::SaveSettings().
      
  | 
  protectedinherited | 
Definition at line 71 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::LoadSettings(), and BITMAP2CMP_PANEL::OnFormatChange().
      
  | 
  private | 
Definition at line 130 of file bitmap2cmp_panel.h.
Referenced by binarize(), ExportToBuffer(), and OpenProjectFiles().
      
  | 
  private | 
Definition at line 134 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), LoadSettings(), OnNegativeClicked(), and OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 46 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::GetCurrentPage().
      
  | 
  private | 
Definition at line 132 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), ExportToBuffer(), GetOutputSizeX(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
      
  | 
  private | 
Definition at line 133 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), ExportToBuffer(), GetOutputSizeY(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
      
  | 
  private | 
Definition at line 124 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), OnExportToFile(), and OnLoadFile().
      
  | 
  private | 
Definition at line 127 of file bitmap2cmp_panel.h.
Referenced by OnPaintInit(), OpenProjectFiles(), and updateImageInfo().
      
  | 
  private | 
Definition at line 126 of file bitmap2cmp_panel.h.
Referenced by OpenProjectFiles().
      
  | 
  protectedinherited | 
Definition at line 64 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::getUnitFromSelection(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::SaveSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 70 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::OnFormatChange(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 73 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::getOutputFormat(), BITMAP2CMP_PANEL::LoadSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 69 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::getOutputFormat(), BITMAP2CMP_PANEL::LoadSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 74 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::getOutputFormat(), BITMAP2CMP_PANEL::LoadSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  privateinherited | 
Definition at line 43 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 53 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 51 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::updateImageInfo().
      
  | 
  protectedinherited | 
Definition at line 52 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL::updateImageInfo().
      
  | 
  protectedinherited | 
Definition at line 67 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::LoadSettings(), BITMAP2CMP_PANEL::OnNegativeClicked(), BITMAP2CMP_PANEL::OnThresholdChange(), BITMAP2CMP_PANEL::OpenProjectFiles(), BITMAP2CMP_PANEL::SaveSettings(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 58 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 54 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 50 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 66 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 62 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OnSizeChangeX(), BITMAP2CMP_PANEL::OnSizeChangeY(), BITMAP2CMP_PANEL::OnSizeUnitChange(), BITMAP2CMP_PANEL::OpenProjectFiles(), BITMAP2CMP_PANEL::SetOutputSize(), and ~BITMAP2CMP_PANEL_BASE().
      
  | 
  protectedinherited | 
Definition at line 63 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL::BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE(), BITMAP2CMP_PANEL::OnSizeChangeX(), BITMAP2CMP_PANEL::OnSizeChangeY(), BITMAP2CMP_PANEL::OnSizeUnitChange(), BITMAP2CMP_PANEL::OpenProjectFiles(), BITMAP2CMP_PANEL::SetOutputSize(), and ~BITMAP2CMP_PANEL_BASE().