CSysPageSetupDialog



Implementation of the system page setup dialog component.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CSysPageSetupDialog :public virtual ISysPageSetupDialog, public CComponent
{
public:
    bool isDisableMargins() override;
    bool isDisableOrientation() override;
    bool isDisablePagePainting() override;
    bool isDisablePaper() override;
    bool isNoNetworkButton() override;
    RectF getMinMargins() override;
    String getDeviceName() override;
    RectF getMargins() override;
    bool isLandscape() override;
    IDialogs::PrintPaperSize getPaperSize() override;
    float getPaperLength() override;
    float getPaperWidth() override;
    float getScale() override;
    int getCopies() override;
    IDialogs::PrintPaperSource getPaperSource() override;
    IDialogs::PrintQuality getPrintQuality() override;
    bool isMonochrome() override;
    IDialogs::PrintDuplex getDuplex() override;
    IDialogs::PrintTTOption getTTOption() override;
    bool isCollate() override;
    IDialogs::PrintMediaType getMediaType() override;
    IDialogs::PrintDitherType getDitherType() override;
    PointF getSize() override;

    bool setDisableMargins(const bool value) override;
    bool setDisableOrientation(const bool value) override;
    bool setDisablePagePainting(const bool value) override;
    bool setDisablePaper(const bool value) override;
    bool setNoNetworkButton(const bool value) override;
    bool setMinMargins(const RectF &value) override;
    bool setMargins(const RectF &value) override;

    bool Execute() override;

    CSysPageSetupDialog();
    CSysPageSetupDialog(IForm *parent);
};
Namespace: nitisa::standard
Include: Standard/Components/SysPageSetupDialog/SysPageSetupDialog.h