dialog_display_options.h 1 KB
Newer Older
1
////////////////////////////////////////////
2
// Name:        dialog_display_options.h
3 4
// Licence:     GPL
////////////////////////////////////////////
5 6 7 8

#ifndef _DIALOG_DISPLAY_OPTIONS_H_
#define _DIALOG_DISPLAY_OPTIONS_H_

9
#include "dialog_display_options_base.h"
10

11 12 13 14 15
////////////////////////////////////////////
/// Class DIALOG_FOOTPRINTS_DISPLAY_OPTIONS
//  derived from DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE,
//  created by wxformBuilder
////////////////////////////////////////////
16

17 18 19 20 21
class DIALOG_FOOTPRINTS_DISPLAY_OPTIONS :
    public DIALOG_FOOTPRINTS_DISPLAY_OPTIONS_BASE
{
private:
WinEDA_BasePcbFrame * m_Parent;
22 23

public:
24 25
    DIALOG_FOOTPRINTS_DISPLAY_OPTIONS( WinEDA_BasePcbFrame* parent );
    ~DIALOG_FOOTPRINTS_DISPLAY_OPTIONS();
26 27


28 29 30 31 32 33
private:
    void initDialog( );
    void UpdateObjectSettings( void );
    virtual void OnApplyClick( wxCommandEvent& event );
    virtual void OnCancelClick( wxCommandEvent& event );
    virtual void OnOkClick( wxCommandEvent& event );
34 35
};

36
#endif      // _DIALOG_DISPLAY_OPTIONS_H_