dialog_libedit_dimensions.cpp 568 Bytes
Newer Older
1 2 3 4
/*
 * dialog_libedit_dimensions.cpp
 * Handles the dialog so set current texts and pins sizes in LibEdit
 */
5 6
#include <fctsys.h>
#include <wxEeschemaStruct.h>
7

8 9
#include <general.h>
#include <libeditframe.h>
10

11
#include <dialog_libedit_dimensions.h>
12 13 14 15 16 17


DIALOG_LIBEDIT_DIMENSIONS::DIALOG_LIBEDIT_DIMENSIONS( LIB_EDIT_FRAME* parent )
    : DIALOG_LIBEDIT_DIMENSIONS_BASE( parent )
{
    GetSizer()->SetSizeHints( this );
18
    Centre( wxBOTH );
19 20 21 22 23 24 25 26 27 28 29 30
}


DIALOG_LIBEDIT_DIMENSIONS::~DIALOG_LIBEDIT_DIMENSIONS()
{
}


void DIALOG_LIBEDIT_DIMENSIONS::initDialog()
{
    SetFocus();
}