Brief description of class still missing. More...
#include <CustomAsciiFormatsEditor.h>
Public Member Functions | |
CustomAsciiFormatsEditor (QWidget *parent=0) | |
void | setFormats (const CustomFileFormats &o) |
~CustomAsciiFormatsEditor () |
Brief description of class still missing.
Full description of class still missing
CustomAsciiFormatsEditor::CustomAsciiFormatsEditor | ( | QWidget * | parent = 0 | ) |
Description of constructor still missing
References TRACE.
: Dialog(parent) { TRACE; setupUi(this); CustomFileFormatsModel * model=new CustomFileFormatsModel(this); formatList->setModel(model); connect(formatList->selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(selectionChanged())); }
void CustomAsciiFormatsEditor::setFormats | ( | const CustomFileFormats & | o | ) |
Copy all ASCII formats from o to this editor.
References TRACE.
Referenced by Preferences::on_formatCustomAscii_clicked().
{ TRACE; CustomFileFormats::setFormats(o, SignalFileFormat::Ascii); updateList(); }