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 |
wxCheckBox * | m_aspectRatioCheckbox |
wxStaticText * | m_staticTextOSize |
wxTextCtrl * | m_UnitSizeX |
wxTextCtrl * | m_UnitSizeY |
wxChoice * | m_PixelUnit |
wxStaticText * | m_ThresholdText |
wxSlider * | m_sliderThreshold |
wxCheckBox * | m_checkNegative |
wxStaticBoxSizer * | m_sizerPcbLayer |
wxChoice * | m_chPCBLayer |
wxRadioBox * | m_rbOutputFormat |
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 |
EDA_UNITS | getUnitFromSelection () |
wxString | FormatOutputSize (double aSize) |
void | Binarize (double aThreshold) |
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 |
void | NegateGreyscaleImage () |
void | updateImageInfo () |
void | OnFormatChange (wxCommandEvent &event) override |
void | exportBitmap (OUTPUT_FMT_ID aFormat) |
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 |
Definition at line 87 of file bitmap2cmp_panel.h.
BITMAP2CMP_PANEL::BITMAP2CMP_PANEL | ( | BITMAP2CMP_FRAME * | aParent | ) |
Definition at line 45 of file bitmap2cmp_panel.cpp.
References _, FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), getUnitFromSelection(), BITMAP2CMP_PANEL_BASE::m_buttonExportClipboard, BITMAP2CMP_PANEL_BASE::m_buttonExportFile, m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, IMAGE_SIZE::SetOutputSize(), and IMAGE_SIZE::SetUnit().
BITMAP2CMP_PANEL::~BITMAP2CMP_PANEL | ( | ) |
Definition at line 66 of file bitmap2cmp_panel.cpp.
|
private |
Definition at line 413 of file bitmap2cmp_panel.cpp.
References m_BN_Bitmap, m_Greyscale_Image, and m_NB_Image.
Referenced by OnNegativeClicked(), OnThresholdChange(), and OpenProjectFiles().
|
private |
Definition at line 518 of file bitmap2cmp_panel.cpp.
References EESCHEMA_FMT, BITMAP2CMP_FRAME::ExportDrawingSheetFormat(), BITMAP2CMP_FRAME::ExportEeschemaFormat(), BITMAP2CMP_FRAME::ExportPcbnewFormat(), BITMAP2CMP_FRAME::ExportPostScriptFormat(), KICAD_WKS_LOGO, m_parentFrame, PCBNEW_KICAD_MOD, and POSTSCRIPT_FMT.
Referenced by OnExportToFile().
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 530 of file bitmap2cmp_panel.cpp.
References _, BITMAPCONV_INFO::ConvertBitmap(), BITMAPCONV_INFO::GetErrorMessages(), IMAGE_SIZE::GetOutputDPI(), BITMAP2CMP_PANEL_BASE::m_chPCBLayer, m_NB_Image, m_outputSizeX, m_outputSizeY, MOD_LYR_FSILKS, and PCBNEW_KICAD_MOD.
Referenced by BITMAP2CMP_FRAME::ExportDrawingSheetFormat(), BITMAP2CMP_FRAME::ExportEeschemaFormat(), BITMAP2CMP_FRAME::ExportPcbnewFormat(), BITMAP2CMP_FRAME::ExportPostScriptFormat(), and OnExportToClipboard().
|
private |
Definition at line 277 of file bitmap2cmp_panel.cpp.
References getUnitFromSelection(), KiROUND(), 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.
Referenced by BITMAP2CMP_FRAME::GetToolCanvas().
|
inline |
Definition at line 102 of file bitmap2cmp_panel.h.
References m_outputSizeX.
Referenced by BITMAP2CMP_FRAME::ShowChangedLanguage().
|
inline |
Definition at line 103 of file bitmap2cmp_panel.h.
References m_outputSizeY.
Referenced by BITMAP2CMP_FRAME::ShowChangedLanguage().
|
private |
Definition at line 309 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_PixelUnit.
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 FINAL_FMT, m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, BITMAP2CMP_PANEL_BASE::m_checkNegative, BITMAP2CMP_PANEL_BASE::m_chPCBLayer, BITMAP2CMP_SETTINGS::m_LastFormat, BITMAP2CMP_SETTINGS::m_LastModLayer, m_negative, BITMAP2CMP_SETTINGS::m_Negative, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_rbOutputFormat, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, BITMAP2CMP_SETTINGS::m_Threshold, BITMAP2CMP_SETTINGS::m_Units, MOD_LYR_FINAL, MOD_LYR_FSILKS, and PCBNEW_KICAD_MOD.
Referenced by BITMAP2CMP_FRAME::LoadSettings().
|
private |
Definition at line 442 of file bitmap2cmp_panel.cpp.
References m_Greyscale_Image.
Referenced by OnNegativeClicked(), and OpenProjectFiles().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 491 of file bitmap2cmp_panel.cpp.
References _, ExportToBuffer(), and BITMAP2CMP_PANEL_BASE::m_rbOutputFormat.
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 482 of file bitmap2cmp_panel.cpp.
References exportBitmap(), and BITMAP2CMP_PANEL_BASE::m_rbOutputFormat.
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 571 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_chPCBLayer, BITMAP2CMP_PANEL_BASE::m_rbOutputFormat, and PCBNEW_KICAD_MOD.
|
overridevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 179 of file bitmap2cmp_panel.cpp.
References m_parentFrame, and BITMAP2CMP_FRAME::OnLoadFile().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 460 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 161 of file bitmap2cmp_panel.cpp.
References m_BN_Bitmap, and BITMAP2CMP_PANEL_BASE::m_BNPicturePanel.
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 142 of file bitmap2cmp_panel.cpp.
References m_Greyscale_Bitmap, and BITMAP2CMP_PANEL_BASE::m_GreyscalePicturePanel.
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 123 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_InitialPicturePanel, and m_Pict_Bitmap.
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 322 of file bitmap2cmp_panel.cpp.
References FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), getUnitFromSelection(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, IMAGE_SIZE::SetOutputSize(), and updateImageInfo().
Referenced by OpenProjectFiles(), and ToggleAspectRatioLock().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 351 of file bitmap2cmp_panel.cpp.
References FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), getUnitFromSelection(), m_aspectRatio, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, IMAGE_SIZE::SetOutputSize(), and updateImageInfo().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 380 of file bitmap2cmp_panel.cpp.
References FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), getUnitFromSelection(), m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, IMAGE_SIZE::SetUnit(), and updateImageInfo().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 475 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 185 of file bitmap2cmp_panel.cpp.
References Binarize(), DEFAULT_DPI, dummy, FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), 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(), IMAGE_SIZE::SetOriginalDPI(), IMAGE_SIZE::SetOriginalSizePixels(), IMAGE_SIZE::SetOutputSizeFromInitialImageSize(), and updateImageInfo().
Referenced by BITMAP2CMP_FRAME::OpenProjectFiles().
void BITMAP2CMP_PANEL::SaveSettings | ( | BITMAP2CMP_SETTINGS * | aCfg | ) |
Definition at line 113 of file bitmap2cmp_panel.cpp.
References BITMAP2CMP_PANEL_BASE::m_checkNegative, BITMAP2CMP_PANEL_BASE::m_chPCBLayer, BITMAP2CMP_SETTINGS::m_LastFormat, BITMAP2CMP_SETTINGS::m_LastModLayer, BITMAP2CMP_SETTINGS::m_Negative, BITMAP2CMP_PANEL_BASE::m_PixelUnit, BITMAP2CMP_PANEL_BASE::m_rbOutputFormat, BITMAP2CMP_PANEL_BASE::m_sliderThreshold, BITMAP2CMP_SETTINGS::m_Threshold, and BITMAP2CMP_SETTINGS::m_Units.
Referenced by BITMAP2CMP_FRAME::SaveSettings().
void BITMAP2CMP_PANEL::SetOutputSize | ( | const IMAGE_SIZE & | aSizeX, |
const IMAGE_SIZE & | aSizeY | ||
) |
Definition at line 391 of file bitmap2cmp_panel.cpp.
References FormatOutputSize(), IMAGE_SIZE::GetOutputSize(), m_outputSizeX, m_outputSizeY, BITMAP2CMP_PANEL_BASE::m_UnitSizeX, BITMAP2CMP_PANEL_BASE::m_UnitSizeY, and updateImageInfo().
Referenced by BITMAP2CMP_FRAME::ShowChangedLanguage().
|
overrideprivatevirtual |
Reimplemented from BITMAP2CMP_PANEL_BASE.
Definition at line 402 of file bitmap2cmp_panel.cpp.
References dummy, BITMAP2CMP_PANEL_BASE::m_aspectRatioCheckbox, and OnSizeChangeX().
|
private |
Definition at line 291 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 155 of file bitmap2cmp_panel.h.
Referenced by LoadSettings(), OnSizeChangeX(), OnSizeChangeY(), and OpenProjectFiles().
|
protectedinherited |
Definition at line 62 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), LoadSettings(), OnSizeChangeX(), OnSizeChangeY(), ToggleAspectRatioLock(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
private |
Definition at line 151 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_BASE::BITMAP2CMP_PANEL_BASE(), OnPaintBW(), OpenProjectFiles(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 60 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 59 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and updateImageInfo().
|
protectedinherited |
Definition at line 74 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), OpenProjectFiles(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 73 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), OpenProjectFiles(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 61 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 69 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), LoadSettings(), OnNegativeClicked(), SaveSettings(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 71 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), ExportToBuffer(), LoadSettings(), OnFormatChange(), and SaveSettings().
|
protectedinherited |
Definition at line 57 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
private |
Definition at line 149 of file bitmap2cmp_panel.h.
Referenced by OnNegativeClicked(), OnPaintGreyscale(), and OpenProjectFiles().
|
private |
Definition at line 148 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_BASE::BITMAP2CMP_PANEL_BASE(), OnPaintGreyscale(), OpenProjectFiles(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 47 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), OnPaintInit(), OpenProjectFiles(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 55 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and OpenProjectFiles().
|
protectedinherited |
Definition at line 56 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and OpenProjectFiles().
|
private |
Definition at line 150 of file bitmap2cmp_panel.h.
Referenced by Binarize(), ExportToBuffer(), and OpenProjectFiles().
|
private |
Definition at line 154 of file bitmap2cmp_panel.h.
Referenced by LoadSettings(), OnNegativeClicked(), and OpenProjectFiles().
|
protectedinherited |
Definition at line 46 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and GetCurrentPage().
|
private |
Definition at line 152 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), ExportToBuffer(), GetOutputSizeX(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
|
private |
Definition at line 153 of file bitmap2cmp_panel.h.
Referenced by BITMAP2CMP_PANEL(), ExportToBuffer(), GetOutputSizeY(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), and SetOutputSize().
|
private |
Definition at line 144 of file bitmap2cmp_panel.h.
Referenced by exportBitmap(), and OnLoadFile().
|
private |
Definition at line 147 of file bitmap2cmp_panel.h.
Referenced by OnPaintInit(), OpenProjectFiles(), and updateImageInfo().
|
private |
Definition at line 146 of file bitmap2cmp_panel.h.
Referenced by OpenProjectFiles().
|
protectedinherited |
Definition at line 66 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), getUnitFromSelection(), LoadSettings(), SaveSettings(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 72 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), LoadSettings(), OnExportToClipboard(), OnExportToFile(), OnFormatChange(), SaveSettings(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 53 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 70 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 51 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and updateImageInfo().
|
protectedinherited |
Definition at line 52 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), and updateImageInfo().
|
protectedinherited |
Definition at line 68 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), LoadSettings(), OnNegativeClicked(), OnThresholdChange(), OpenProjectFiles(), SaveSettings(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 58 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 54 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 50 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 63 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 67 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 64 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), SetOutputSize(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().
|
protectedinherited |
Definition at line 65 of file bitmap2cmp_panel_base.h.
Referenced by BITMAP2CMP_PANEL(), BITMAP2CMP_PANEL_BASE::BITMAP2CMP_PANEL_BASE(), OnSizeChangeX(), OnSizeChangeY(), OnSizeUnitChange(), OpenProjectFiles(), SetOutputSize(), and BITMAP2CMP_PANEL_BASE::~BITMAP2CMP_PANEL_BASE().