MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / InputFile

Method InputFile

src/openms_gui/source/VISUAL/InputFile.cpp:24–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22namespace OpenMS
23{
24 InputFile::InputFile(QWidget* parent)
25 : QWidget(parent),
26 file_format_filter_(),
27 ui_(new Ui::InputFileTemplate)
28 {
29 ui_->setupUi(this);
30 QCompleter* completer = new QCompleter(this);
31 completer->setModel(new QFileSystemModel(completer));
32 ui_->line_edit->setCompleter(completer);
33 connect(ui_->browse_button, SIGNAL(clicked()), this, SLOT(showFileDialog()));
34 }
35
36 InputFile::~InputFile()
37 {

Callers

nothing calls this directly

Calls 1

setModelMethod · 0.80

Tested by

no test coverage detected